From 41a5115774b1807735dd1ddc6e08a36ca82ce094 Mon Sep 17 00:00:00 2001 From: Michael van Tellingen Date: Wed, 16 Oct 2024 07:21:28 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.3.0=20=E2=86=92=204.3.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 +- pyproject.toml | 2 +- src/zeep/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3d655d19..54a015a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.3.0 +current_version = 4.3.1 commit = true tag = true tag_name = {new_version} diff --git a/docs/conf.py b/docs/conf.py index 965be28e..c10eb7fd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # built documents. # # The short X.Y version. -version = '4.3.0' +version = '4.3.1' release = version # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/index.rst b/docs/index.rst index 480ad64a..be91fff8 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.3.0``'). + (e.g. ``zeep==4.3.1``'). .. _semver: http://semver.org/ diff --git a/pyproject.toml b/pyproject.toml index db09a9c4..c151100a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "zeep" -version = "4.3.0" +version = "4.3.1" description = "A Python SOAP client" readme = "README.md" license = { text = "MIT" } diff --git a/src/zeep/__init__.py b/src/zeep/__init__.py index c295d139..564534b9 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.3.0" +__version__ = "4.3.1" __all__ = [ "AsyncClient", "CachingClient",