From 8ad91a958e0adc7c987fb63d36687fdef063cad1 Mon Sep 17 00:00:00 2001 From: Felix Marczinowski Date: Tue, 12 Sep 2017 16:21:55 +0200 Subject: [PATCH] fix version in setup.py --- docs/changes.rst | 4 ++++ docs/conf.py | 4 ++-- setup.py | 2 +- simplekv/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index 8ddb406b..2a4308f6 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,10 @@ Changelog ********* +0.11.1 +====== +* Fix version in setup.py + 0.11.0 ====== * The memcached backend has been removed diff --git a/docs/conf.py b/docs/conf.py index c56d4d67..4c039a60 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '0.11.0' +version = '0.11.1' # The full version, including alpha/beta/rc tags. -release = '0.11.0.dev1' +release = '0.11.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index e5e10b1f..fc597d7b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(fname): setup(name='simplekv', - version='0.11.0.dev1', + version='0.11.1', description=('A key-value storage for binary data, support many ' 'backends.'), long_description=read('README.rst'), diff --git a/simplekv/__init__.py b/simplekv/__init__.py index aa884908..91fc68fa 100644 --- a/simplekv/__init__.py +++ b/simplekv/__init__.py @@ -5,7 +5,7 @@ from io import BytesIO from ._compat import text_type -__version__ = '0.11.0.dev1' +__version__ = '0.11.1' VALID_NON_NUM = r"""\`\!"#$%&'()+,-.<=>?@[]^_{}~""" VALID_KEY_REGEXP = "^[%s0-9a-zA-Z]+$" % re.escape(VALID_NON_NUM)