diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 567ea749..8b5c484a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.2 +current_version = 0.5.0 commit = True tag = True diff --git a/iredis/__init__.py b/iredis/__init__.py index 1340ae4e..229dc6df 100644 --- a/iredis/__init__.py +++ b/iredis/__init__.py @@ -2,7 +2,7 @@ import logging from pathlib import Path -__version__ = "0.4.2" +__version__ = "0.5.0" logging.basicConfig( diff --git a/pyproject.toml b/pyproject.toml index 671a08ca..79749306 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "0.4.2" +version = "0.5.0" description = "Terminal Client for Redis with AutoCompletion and Syntax Highlighting." authors = ["laixintao "] readme = 'README.md'