Skip to content

Commit

Permalink
Merge branch 'main' into add-ni-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed Sep 14, 2023
2 parents c13e0aa + c57adff commit 57426aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.9.0
current_version = 3.9.1
commit = True
tag = False

Expand Down
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.9.1
- Updating Meetings API url to a `/v1` endpoint

# 3.9.0
- Dropped support for Python 3.7 as it's end-of-life and no longer receiving security updates

Expand Down Expand Up @@ -83,7 +86,7 @@ Enhancements:
- Added Messages API v1.0 support. Messages API can now be used by calling the `client.messages.send_message()` method.

# 2.7.0
- Moved some client methods into their own classes: `account.py, application.py,
- Moved some client methods into their own classes: `account.py, application.py,
message_search.py, number_insight.py, numbers.py, short_codes.py, ussd.py`
- Deprecated the corresponding client methods. These will be removed in a major release that's coming soon.
- Client now instantiates a class object for each API when it is created, e.g. `vonage.Client(key="mykey", secret="mysecret")`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="vonage",
version="3.9.0",
version="3.9.1",
description="Vonage Server SDK for Python",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/vonage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .client import *
from .ncco_builder.ncco import *

__version__ = "3.9.0"
__version__ = "3.9.1"

0 comments on commit 57426aa

Please sign in to comment.