diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b68e719..429916d6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,10 @@
# Changelog
+6.2.1 - 2022-07-22
+--------------------
+Removed unnecessary toString() on a String. Big thanks to [Steve Donovan](https://github.com/steve-donovan) for his contribution! :clap:
+
+Fixed property type name in the FlightOffersSearch resource
+
6.2.0 - 2022-07-18
--------------------
Add support for the [Airline Routes API](https://developers.amadeus.com/self-service/category/air/api-doc/airline-routes/api-reference). Big thanks to [Siddhartha Dutta](https://github.com/siddydutta) for his contribution! :clap:
diff --git a/README.md b/README.md
index 64c6bfe4..1be3890d 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 a92ae2ac..e985705c 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.2.0", "should have a version number"); + assertEquals(Amadeus.VERSION, "6.2.1", "should have a version number"); } }