Skip to content

Commit

Permalink
Bump version to v0.6.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
souradipp76 committed Jan 31, 2024
1 parent 9d193ea commit 853b9cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.4.0](https://github.com/souradipp76/tp_chaos_generator/releases/tag/v0.4.0) - 2023-07-09
## [v0.4.0](https://github.com/souradipp76/tp_chaos_generator/releases/tag/v0.4.0) - 2024-01-30

## [v0.4.0](https://github.com/souradipp76/tp_chaos_generator/releases/tag/v0.4.0) - 2024-01-30

## [v0.5.0](https://github.com/souradipp76/tp_chaos_generator/releases/tag/v0.5.0) - 2023-07-09

## [v0.3.0](https://github.com/souradipp76/tp_chaos_generator/releases/tag/v0.3.0) - 2023-07-09

Expand Down
4 changes: 2 additions & 2 deletions scripts/prepare_changelog.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import datetime
from pathlib import Path

from tp_chaos_generator.version import VERSION
from tp_chaos_generator import VERSION


def main():
Expand All @@ -16,7 +16,7 @@ def main():
line = lines[i]
if line.startswith("## Unreleased"):
insert_index = i + 1
elif line.startswith(f"## [v{VERSION}]"):
elif line.startswith(f"## [v0.6.0]"):
print("CHANGELOG already up-to-date")
return
elif line.startswith("## [v"):
Expand Down
2 changes: 1 addition & 1 deletion tp_chaos_generator/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Version """

_MAJOR = "0"
_MINOR = "5"
_MINOR = "6"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
Expand Down

0 comments on commit 853b9cc

Please sign in to comment.