Skip to content

Commit 29976d9

Browse files
committed
Bump version: 3.0.0 → 3.1.0
1 parent c15316b commit 29976d9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = '3.0.0'
65+
version = '3.1.0'
6666
release = version
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ See ``python -mzeep --help`` for more information about this command.
110110

111111
.. note:: Zeep follows `semver`_ for versioning, however bugs can always occur.
112112
So as always pin the version of zeep you tested with
113-
(e.g. ``zeep==3.0.0``').
113+
(e.g. ``zeep==3.1.0``').
114114

115115

116116
.. _semver: http://semver.org/

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.1.0
33
commit = true
44
tag = true
55
tag_name = {new_version}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'cached-property>=1.3.0',
1010
'defusedxml>=0.4.1',
1111
'isodate>=0.5.4',
12-
'lxml>=3.0.0',
12+
'lxml>=3.1.0',
1313
'requests>=2.7.0',
1414
'requests-toolbelt>=0.7.1',
1515
'six>=1.9.0',
@@ -59,7 +59,7 @@
5959

6060
setup(
6161
name='zeep',
62-
version='3.0.0',
62+
version='3.1.0',
6363
description='A modern/fast Python SOAP client based on lxml / requests',
6464
long_description=long_description,
6565
author="Michael van Tellingen",

src/zeep/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from zeep.settings import Settings # noqa
55
from zeep.xsd.valueobjects import AnyObject # noqa
66

7-
__version__ = '3.0.0'
7+
__version__ = '3.1.0'

0 commit comments

Comments
 (0)