From 6a7a3a47924f129034feb864e61163b6cb00ab87 Mon Sep 17 00:00:00 2001 From: laixintao Date: Thu, 26 Dec 2019 00:36:02 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.2=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- iredis/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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'