Skip to content

Commit ec6dbf7

Browse files
committed
prepare for 4.1.0 release, remove unused package
1 parent fd8b268 commit ec6dbf7

File tree

60 files changed

+88
-350
lines changed

Some content is hidden

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

60 files changed

+88
-350
lines changed

account/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.1.1
2+
- Update dependency versions
3+
14
# 1.1.0
25
- Add support for the [Vonage Pricing API](https://developer.vonage.com/en/api/pricing)
36
- Update dependency versions

account/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
authors = [{ name = "Vonage", email = "devrel@vonage.com" }]
77
requires-python = ">=3.9"
88
dependencies = [
9-
"vonage-http-client>=1.4.3",
9+
"vonage-http-client>=1.5.0",
1010
"vonage-utils>=1.1.4",
1111
"pydantic>=2.9.2",
1212
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.1.1'

application/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 2.0.1
2+
- Updated dependency versions
3+
14
# 2.0.0
25
- Rename `params` -> `config` in method arguments
36
- Update dependency versions

application/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
authors = [{ name = "Vonage", email = "devrel@vonage.com" }]
77
requires-python = ">=3.9"
88
dependencies = [
9-
"vonage-http-client>=1.4.3",
9+
"vonage-http-client>=1.5.0",
1010
"vonage-utils>=1.1.4",
1111
"pydantic>=2.9.2",
1212
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.0'
1+
__version__ = '2.0.1'

http_client/CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
- Updated dependency versions
2+
# 1.5.0
3+
- Add new `HttpClient.download_file_stream` method
4+
- Add new `FileStreamingError` exception type
5+
- Add backoff exponential timeout increase for HTTP request retries
6+
- Add retries for `RemoteDisconnected` exceptions
7+
18
# 1.4.3
29
- Update JWT dependency version
310

http_client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [{ name = "Vonage", email = "devrel@vonage.com" }]
77
requires-python = ">=3.9"
88
dependencies = [
99
"vonage-utils>=1.1.4",
10-
"vonage-jwt>=1.1.4",
10+
"vonage-jwt>=1.1.5",
1111
"requests>=2.27.0",
1212
"typing-extensions>=4.9.0",
1313
"pydantic>=2.9.2",

http_client/src/vonage_http_client/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from .auth import Auth
22
from .errors import (
33
AuthenticationError,
4+
FileStreamingError,
45
ForbiddenError,
56
HttpRequestError,
67
InvalidAuthError,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.4.3'
1+
__version__ = '1.5.0'

0 commit comments

Comments
 (0)