From a1962f70015386f069821b91844b9b0d80da712b Mon Sep 17 00:00:00 2001 From: laixintao Date: Sat, 11 Jan 2020 22:33:45 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.3=20=E2=86=92=200.8.4?= 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 fd883130..6b262bed 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.3 +current_version = 0.8.4 commit = True tag = True diff --git a/iredis/__init__.py b/iredis/__init__.py index e6ffe926..baedd3ed 100644 --- a/iredis/__init__.py +++ b/iredis/__init__.py @@ -2,7 +2,7 @@ import logging from pathlib import Path -__version__ = "0.8.3" +__version__ = "0.8.4" logging.basicConfig( diff --git a/pyproject.toml b/pyproject.toml index dc9f64a8..32d2f1a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "0.8.3" +version = "0.8.4" description = "Terminal client for Redis with auto-completion and syntax highlighting." authors = ["laixintao "] readme = 'README.md'