diff --git a/.bumpversion.toml b/.bumpversion.toml index a674193..57f460f 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.8.0" +current_version = "0.9.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b8df9..f6e220c 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.9.0] - 2024-06-06 ### Changed - django-comparison-dashboard to v1.1.0 to support fomantic-ui diff --git a/sedos_dashboard/__init__.py b/sedos_dashboard/__init__.py index 995bf37..f6a28ed 100644 --- a/sedos_dashboard/__init__.py +++ b/sedos_dashboard/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.8.0" +__version__ = "0.9.0" __version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split("."))