diff --git a/CHANGELOG.md b/CHANGELOG.md
index 72fb8d52..447dd5cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
# Changelog
+6.1.0 - 2022-05-23
+--------------------
+Add support for the [Hotel Search API v3](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-search/api-reference)
+
6.0.0 - 2022-05-19
--------------------
Add support for the [Hotel List API](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-list/api-reference)
diff --git a/README.md b/README.md
index 78c8caf9..35da4445 100644
--- a/README.md
+++ b/README.md
@@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
diff --git a/src/test/java/com/amadeus/AmadeusTest.java b/src/test/java/com/amadeus/AmadeusTest.java index b5b92ef3..05d11c6e 100644 --- a/src/test/java/com/amadeus/AmadeusTest.java +++ b/src/test/java/com/amadeus/AmadeusTest.java @@ -61,7 +61,7 @@ public void testBuilderWithInvalidEnvironment() { } @Test public void testVersion() { - assertEquals(Amadeus.VERSION, "6.0.0", "should have a version number"); + assertEquals(Amadeus.VERSION, "6.1.0", "should have a version number"); } }