diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 006c577..4c424cc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,9 @@ Changelog ========= +10.1.0 - 2024-06-20 +-------------------- +Add support for the `Hotel Booking v2 API `_. Big thanks to `Siddhartha Dutta `_ for his contribution + 10.0.0 - 2024-04-17 -------------------- Decommissioned the Safe Place API diff --git a/amadeus/version.py b/amadeus/version.py index 92a6b2e..69d74b0 100644 --- a/amadeus/version.py +++ b/amadeus/version.py @@ -1,2 +1,2 @@ -version_info = (10, 0, 0) +version_info = (10, 1, 0) version = '.'.join(str(v) for v in version_info)