Skip to content

Commit

Permalink
fix version in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Marczinowski committed Sep 12, 2017
1 parent 5e320d2 commit 8ad91a9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
*********

0.11.1
======
* Fix version in setup.py

0.11.0
======
* The memcached backend has been removed
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion simplekv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8ad91a9

Please sign in to comment.