diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ecc72dfc..a19a1659 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.19 +current_version = 0.3.0 commit = True tag = True diff --git a/iredis/__init__.py b/iredis/__init__.py index c6a3c159..532ee43b 100644 --- a/iredis/__init__.py +++ b/iredis/__init__.py @@ -2,7 +2,7 @@ import logging from pathlib import Path -__version__ = "0.2.19" +__version__ = "0.3.0" logging.basicConfig( diff --git a/pyproject.toml b/pyproject.toml index 4f32265a..063f3587 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "0.2.19" +version = "0.3.0" description = "Terminal Client for Redis with AutoCompletion and Syntax Highlighting." authors = ["laixintao "] readme = 'README.md'