Skip to content

Commit

Permalink
bump version number to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Marczinowski committed Mar 13, 2019
1 parent 9ef6eb9 commit 3ea168b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion simplekv/__init__.py
Expand Up @@ -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)
Expand Down

0 comments on commit 3ea168b

Please sign in to comment.