diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 392a118..7257f9b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.13 +current_version = 0.12.14 files = setup.py cachecontrol/__init__.py docs/conf.py commit = True tag = True diff --git a/cachecontrol/__init__.py b/cachecontrol/__init__.py index b235311..072d070 100644 --- a/cachecontrol/__init__.py +++ b/cachecontrol/__init__.py @@ -8,7 +8,7 @@ """ __author__ = "Eric Larson" __email__ = "eric@ionrock.org" -__version__ = "0.12.13" +__version__ = "0.12.14" from .wrapper import CacheControl from .adapter import CacheControlAdapter diff --git a/docs/conf.py b/docs/conf.py index c84eb24..22a2892 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # built documents. # # The short X.Y version. -version = "0.12.13" +version = "0.12.14" # The full version, including alpha/beta/rc tags. -release = "0.12.13" +release = "0.12.14" # 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 8e64593..3aaeb37 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ long_description = open("README.rst").read() -VERSION = "0.12.13" +VERSION = "0.12.14" setup_params = dict( name="CacheControl",