Skip to content

Commit

Permalink
release 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-marczinowski-by committed Oct 28, 2019
1 parent 9fac516 commit dcaa3c2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
*********

0.13.1
======

* Add the optional parameters of the Azure API max_block_size and max_single_put_size to the AzureBlockBlobStore.

0.13.0
======
* Add ``iter_prefixes()`` method to iterate over all prefixes currently in the store, in any order. The
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = '0.13.0'
version = '0.13.1'
# The full version, including alpha/beta/rc tags.
release = '0.13.0'
release = '0.13.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.13.0',
version='0.13.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 key_type

__version__ = '0.13.0'
__version__ = '0.13.1'

VALID_NON_NUM = r"""\`\!"#$%&'()+,-.<=>?@[]^_{}~"""
VALID_KEY_REGEXP = "^[%s0-9a-zA-Z]+$" % re.escape(VALID_NON_NUM)
Expand Down

0 comments on commit dcaa3c2

Please sign in to comment.