diff --git a/.bumpversion.toml b/.bumpversion.toml index f9cf3ef..8d0972b 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "1.0.0" +current_version = "1.0.1" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ['{major}.{minor}.{patch}'] search = '{current_version}' diff --git a/README.md b/README.md index 1fd6275..348c3bf 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.0 +Version 1.0.1 [API Documentation](https://ideal-funicular-124903cd.pages.github.io/) diff --git a/src/smax/__init__.py b/src/smax/__init__.py index dd8a33c..751c883 100644 --- a/src/smax/__init__.py +++ b/src/smax/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0.0' +__version__ = '1.0.1' from .smax_client import SmaxData, SmaxInt, SmaxFloat, SmaxBool, SmaxStr, \ SmaxStrArray, SmaxArray, SmaxStruct, SmaxInt8, SmaxInt16, SmaxInt32, \