Skip to content

Commit

Permalink
Bump version to 1.0.2 incorporating CLI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKGrimes committed Aug 14, 2024
1 parent 1812458 commit 878192c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.0.1"
current_version = "1.0.2"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ['{major}.{minor}.{patch}']
search = '{current_version}'
Expand All @@ -11,7 +11,7 @@ tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
allow_dirty = true
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = "--no-verify"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SMAX for Python
Client side python library for communicating with SMA-X (aka Redis).

Version 1.0.1
Version 1.0.2

[API Documentation](https://ideal-funicular-124903cd.pages.github.io/)

Expand Down
2 changes: 1 addition & 1 deletion src/smax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.1'
__version__ = '1.0.2'

from .smax_client import SmaxData, SmaxInt, SmaxFloat, SmaxBool, SmaxStr, \
SmaxStrArray, SmaxArray, SmaxStruct, SmaxInt8, SmaxInt16, SmaxInt32, \
Expand Down

0 comments on commit 878192c

Please sign in to comment.