diff --git a/CHANGES.md b/CHANGES.md index f15f2e842..18b6c59ef 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,11 @@ twilio-python Changelog Here you can see the full list of changes between each twilio-python release. +[2026-05-07] Version 9.10.7 +--------------------------- +**Library - Chore** +- [PR #922](https://github.com/twilio/twilio-python/pull/922): add init for knowledge. Thanks to [@kridai](https://github.com/kridai)! + [2026-05-06] Version 9.10.6 --------------------------- **Library - Chore** diff --git a/setup.py b/setup.py index 7f7546dd7..0c963e943 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="twilio", - version="9.10.6", + version="9.10.7", description="Twilio API client and TwiML generator", author="Twilio", help_center="https://www.twilio.com/help/contact", diff --git a/twilio/__init__.py b/twilio/__init__.py index 728d43120..d486db0a4 100644 --- a/twilio/__init__.py +++ b/twilio/__init__.py @@ -1,2 +1,2 @@ -__version_info__ = ("9", "10", "6") +__version_info__ = ("9", "10", "7") __version__ = ".".join(__version_info__)