diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4c424cc..f0c9a9e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,9 @@ Changelog ========= +11.0.0 - 2024-10-02 +-------------------- +Decommissioned the Trip Parser API + 10.1.0 - 2024-06-20 -------------------- Add support for the `Hotel Booking v2 API `_. Big thanks to `Siddhartha Dutta `_ for his contribution diff --git a/amadeus/version.py b/amadeus/version.py index 69d74b0..4c29845 100644 --- a/amadeus/version.py +++ b/amadeus/version.py @@ -1,2 +1,2 @@ -version_info = (10, 1, 0) +version_info = (11, 0, 0) version = '.'.join(str(v) for v in version_info)