From 3ea168b0098237dd5e62d7d6f2b906fa8a3bb523 Mon Sep 17 00:00:00 2001 From: Felix Marczinowski Date: Wed, 13 Mar 2019 13:28:08 +0100 Subject: [PATCH] bump version number to 0.12.0 --- docs/conf.py | 4 ++-- setup.py | 2 +- simplekv/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 39b77ff7..bf46dc83 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '0.11.11' +version = '0.12.0' # The full version, including alpha/beta/rc tags. -release = '0.11.11' +release = '0.12.0' # 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 bf7bbb60..c632b2ff 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(fname): setup(name='simplekv', - version='0.11.11', + version='0.12.0', 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 b0cafa8c..62f7293f 100644 --- a/simplekv/__init__.py +++ b/simplekv/__init__.py @@ -5,7 +5,7 @@ from io import BytesIO from ._compat import key_type -__version__ = '0.11.11' +__version__ = '0.12.0' VALID_NON_NUM = r"""\`\!"#$%&'()+,-.<=>?@[]^_{}~""" VALID_KEY_REGEXP = "^[%s0-9a-zA-Z]+$" % re.escape(VALID_NON_NUM)