Skip to content

Commit

Permalink
release: Bump version number from v0.6.0 to v0.7.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
florisla committed Oct 11, 2023
1 parent a26158d commit b0aed64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ SourceCode = "https://github.com/florisla/stm32loader"


[tool.bumpversion]
current_version = "0.6.0"
current_version = "0.7.0-dev"
commit = true
tag = true
message = "release: Bump version number from v{current_version} to v{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion stm32loader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Flash firmware to STM32 microcontrollers over a serial connection."""

__version_info__ = (0, 6, 0)
__version_info__ = (0, 7, 0, 'dev')
__version__ = "-".join(str(part) for part in __version_info__).replace("-", ".", 2)

0 comments on commit b0aed64

Please sign in to comment.