diff --git a/.bumpversion.toml b/.bumpversion.toml index 8d0972b..f198069 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "1.0.1" +current_version = "1.0.2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ['{major}.{minor}.{patch}'] search = '{current_version}' @@ -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" diff --git a/README.md b/README.md index 348c3bf..4fc582e 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/src/smax/__init__.py b/src/smax/__init__.py index 751c883..3ce2c97 100644 --- a/src/smax/__init__.py +++ b/src/smax/__init__.py @@ -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, \