Skip to content

Commit cde28c2

Browse files
committed
prepare for beta release
1 parent 315b6dc commit cde28c2

File tree

65 files changed

+269
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+269
-274
lines changed

OPENTOK_TO_VONAGE_MIGRATION.md

Lines changed: 0 additions & 92 deletions
This file was deleted.

account/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.0.2
2+
- Support for Python 3.13, drop support for 3.8
3+
14
# 1.0.1
25
- Add docstrings to data models
36

account/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ dynamic = ["version"]
44
description = 'Vonage Account API package'
55
readme = "README.md"
66
authors = [{ name = "Vonage", email = "[email protected]" }]
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
dependencies = [
9-
"vonage-http-client>=1.4.1",
10-
"vonage-utils>=1.1.3",
11-
"pydantic>=2.7.1",
9+
"vonage-http-client>=1.4.2",
10+
"vonage-utils>=1.1.4",
11+
"pydantic>=2.9.2",
1212
]
1313
classifiers = [
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2121
"License :: OSI Approved :: Apache Software License",
2222
]
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'

application/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.0.3
2+
- Support for Python 3.13, drop support for 3.8
3+
14
# 1.0.2
25
- Add docstrings to data models
36

application/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ dynamic = ["version"]
44
description = 'Vonage Application API package'
55
readme = "README.md"
66
authors = [{ name = "Vonage", email = "[email protected]" }]
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
dependencies = [
9-
"vonage-http-client>=1.4.1",
10-
"vonage-utils>=1.1.3",
11-
"pydantic>=2.7.1",
9+
"vonage-http-client>=1.4.2",
10+
"vonage-utils>=1.1.4",
11+
"pydantic>=2.9.2",
1212
]
1313
classifiers = [
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2121
"License :: OSI Approved :: Apache Software License",
2222
]
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.2'
1+
__version__ = '1.0.3'

http_client/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.4.2
2+
- Support for Python 3.13, drop support for 3.8
3+
14
# 1.4.1
25
- Add docstrings to data models
36

http_client/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ dynamic = ["version"]
44
description = "An HTTP client for making requests to Vonage APIs."
55
readme = "README.md"
66
authors = [{ name = "Vonage", email = "[email protected]" }]
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
dependencies = [
9-
"vonage-utils>=1.1.3",
10-
"vonage-jwt>=1.1.2",
9+
"vonage-utils>=1.1.4",
10+
"vonage-jwt>=1.1.3",
1111
"requests>=2.27.0",
1212
"typing-extensions>=4.9.0",
13-
"pydantic>=2.7.1",
13+
"pydantic>=2.9.2",
1414
]
1515
classifiers = [
1616
"Programming Language :: Python",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2323
"License :: OSI Approved :: Apache Software License",
2424
]
2525

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.4.1'
1+
__version__ = '1.4.2'

0 commit comments

Comments
 (0)