From 4e5ebad9eb355281cf3ae73cf83f666dc4b8bb00 Mon Sep 17 00:00:00 2001 From: Michael van Tellingen Date: Sun, 20 Nov 2022 21:31:55 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.2.0=20=E2=86=92=204.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- docs/index.rst | 2 +- setup.py | 2 +- src/zeep/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bb87933d..34d91208 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.2.0 +current_version = 4.2.1 commit = true tag = true tag_name = {new_version} diff --git a/docs/conf.py b/docs/conf.py index e3eac58f..f146b9f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # built documents. # # The short X.Y version. -version = '4.2.0' +version = '4.2.1' release = version # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/index.rst b/docs/index.rst index f8c9393e..fe2382e6 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -106,7 +106,7 @@ See ``python -mzeep --help`` for more information about this command. .. note:: Zeep follows `semver`_ for versioning, however bugs can always occur. So as always pin the version of zeep you tested with - (e.g. ``zeep==4.2.0``'). + (e.g. ``zeep==4.2.1``'). .. _semver: http://semver.org/ diff --git a/setup.py b/setup.py index 0ac49561..9b81ae59 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( name="zeep", - version="4.2.0", + version="4.2.1", description="A Python SOAP client", long_description=long_description, author="Michael van Tellingen", diff --git a/src/zeep/__init__.py b/src/zeep/__init__.py index 4083a2c9..f5b88ab8 100644 --- a/src/zeep/__init__.py +++ b/src/zeep/__init__.py @@ -4,7 +4,7 @@ from zeep.transports import Transport from zeep.xsd.valueobjects import AnyObject -__version__ = "4.2.0" +__version__ = "4.2.1" __all__ = [ "AsyncClient", "CachingClient",