diff --git a/.bumpversion.toml b/.bumpversion.toml index 12aec8c..fa7edda 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.1.0" +current_version = "0.2.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb5966..c50083c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project tries to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.2.0] - 2024-03-05 ### Added - version bumping tool diff --git a/sedos_dashboard/__init__.py b/sedos_dashboard/__init__.py index 9c9b953..febda21 100644 --- a/sedos_dashboard/__init__.py +++ b/sedos_dashboard/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" __version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split("."))