diff --git a/.bumpversion.toml b/.bumpversion.toml new file mode 100644 index 0000000..12aec8c --- /dev/null +++ b/.bumpversion.toml @@ -0,0 +1,29 @@ +[tool.bumpversion] +current_version = "0.1.0" +parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" +serialize = ["{major}.{minor}.{patch}"] +search = "{current_version}" +replace = "{new_version}" +regex = false +ignore_missing_version = false +ignore_missing_files = false +tag = false +sign_tags = false +tag_name = "v{new_version}" +tag_message = "Bump version: {current_version} → {new_version}" +allow_dirty = false +commit = true +message = "Bump version: {current_version} → {new_version}" +commit_args = "" + +[[tool.bumpversion.files]] +filename = "sedos_dashboard/__init__.py" + +[[tool.bumpversion.files]] +filename = "CHANGELOG.md" +search = "[Unreleased]" +replace = "[Unreleased] - {now:%Y-%m-%d}" + +[[tool.bumpversion.files]] +filename = "CHANGELOG.md" +search = "Unreleased" diff --git a/CHANGELOG.md b/CHANGELOG.md index b0574d9..8bb5966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,5 +5,14 @@ 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] +### Added +- version bumping tool + +### Changed +- update django_comparison_dashboard to v0.4.1 +- update django_energysystem_viewer to v0.3.1 + +## [0.1.0] - 2024-01-29 +### Added - first deploy - update comparison dashboard diff --git a/requirements/base.txt b/requirements/base.txt index 0b77d1b..b3704ac 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -26,5 +26,5 @@ django-cors-headers==4.2.0 # https://github.com/adamchainz/django-cors-headers # DRF-spectacular for api documentation drf-spectacular==0.26.4 # https://github.com/tfranzel/drf-spectacular -git+https://github.com/OpenEnergyPlatform/django-comparison-dashboard.git@v0.4.0 -git+https://github.com/sedos-project/django_energysystem_viewer.git@v0.3.0 +git+https://github.com/OpenEnergyPlatform/django-comparison-dashboard.git@v0.4.1 +git+https://github.com/sedos-project/django_energysystem_viewer.git@v0.3.1