From dcaa3c2d2e7f1288bb09ef568a4274584cfa23f6 Mon Sep 17 00:00:00 2001 From: Felix Marczinowski Date: Mon, 28 Oct 2019 16:36:09 +0100 Subject: [PATCH] release 0.13.1 --- docs/changes.rst | 5 +++++ docs/conf.py | 4 ++-- setup.py | 2 +- simplekv/__init__.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index 03a2465b..e8f11ae8 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 5e8f4737..f4fbc503 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/setup.py b/setup.py index 2bb26158..7d39ff7c 100644 --- a/setup.py +++ b/setup.py @@ -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'), diff --git a/simplekv/__init__.py b/simplekv/__init__.py index 84226aa1..92fa01e4 100644 --- a/simplekv/__init__.py +++ b/simplekv/__init__.py @@ -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)