From a34a8af108a6532f9b3e5061045589fa48185f75 Mon Sep 17 00:00:00 2001 From: laixintao Date: Sat, 15 Feb 2020 15:10:13 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.1=20=E2=86=92=201.0.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 70c06371..104c765d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 1.0.0 commit = True tag = True diff --git a/iredis/__init__.py b/iredis/__init__.py index 974b9568..c4ce740c 100644 --- a/iredis/__init__.py +++ b/iredis/__init__.py @@ -2,7 +2,7 @@ from pathlib import Path -__version__ = "0.9.1" +__version__ = "1.0.0" project_root = Path(os.path.dirname(os.path.abspath(__file__))) diff --git a/pyproject.toml b/pyproject.toml index 6390adfb..a29fab0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "0.9.1" +version = "1.0.0" description = "Terminal client for Redis with auto-completion and syntax highlighting." authors = ["laixintao "] readme = 'README.md'