From 3bd694551d28445723c18f4ad8c44bce55ff9b5f Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Fri, 5 Nov 2021 12:07:09 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.12.9=20=E2=86=92=200.12.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- cachecontrol/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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",