Skip to content

Commit d6b05ce

Browse files
authored
Merge pull request #213 from maxkahan/2.x
Bump to new patch version
2 parents 3d65792 + c4c648d commit d6b05ce

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.6.3
2+
current_version = 2.6.4
33
commit = True
44
tag = False
55

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Dropped support for Python 3.6 and below
44
- Now supporting currently supported stable versions of Python, i.e. Python 3.7-3.10
55
- Internal refactoring and enhancements
6+
- Adding default `max_retries` option to the `BasicAuthenticationServer` constructor, specifying optional parameters
67

78
# 2.5.5
89

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = "2.6.3"
69+
version = "2.6.4"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "2.6.3"
71+
release = "2.6.4"
7272

7373
# The language for content autogenerated by Sphinx. Refer to documentation
7474
# for a list of supported languages.
@@ -143,7 +143,7 @@
143143
# The name for this set of Sphinx documents.
144144
# "<project> v<release> documentation" by default.
145145
#
146-
# html_title = u'Vonage v2.6.3'
146+
# html_title = u'Vonage v2.6.4'
147147

148148
# A shorter title for the navigation bar. Default is the same as html_title.
149149
#

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="vonage",
14-
version="2.6.3",
14+
version="2.6.4",
1515
description="Vonage Server SDK for Python",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",

src/vonage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from .sms import *
55
from .verify import *
66

7-
__version__ = "2.6.3"
7+
__version__ = "2.6.4"

0 commit comments

Comments
 (0)