diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bc06ec4..3434499 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.9 +current_version = 0.12.10 files = setup.py cachecontrol/__init__.py docs/conf.py commit = True tag = True diff --git a/cachecontrol/__init__.py b/cachecontrol/__init__.py index acaf744..8435d62 100644 --- a/cachecontrol/__init__.py +++ b/cachecontrol/__init__.py @@ -8,7 +8,7 @@ """ __author__ = "Eric Larson" __email__ = "eric@ionrock.org" -__version__ = "0.12.9" +__version__ = "0.12.10" from .wrapper import CacheControl from .adapter import CacheControlAdapter diff --git a/docs/conf.py b/docs/conf.py index e870f2c..10a60f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # built documents. # # The short X.Y version. -version = "0.12.9" +version = "0.12.10" # The full version, including alpha/beta/rc tags. -release = "0.12.9" +release = "0.12.10" # 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 89139d1..e453145 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ long_description = open("README.rst").read() -VERSION = "0.12.9" +VERSION = "0.12.10" setup_params = dict( name="CacheControl",