diff --git a/CHANGELOG.md b/CHANGELOG.md
index ab9e4329..988d1783 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
# Changelog
+5.7.2 - 2021-04-27
+--------------------
+Fix unwanted exception in description of an error. Big thanks to [João Cana Verde](https://github.com/JPCanaverde) for his contribution! :clap:
+
5.7.1 - 2021-03-09
--------------------
Add media and available seats counter to the SeatMap resource
diff --git a/README.md b/README.md
index bd5017cf..35d2cd43 100644
--- a/README.md
+++ b/README.md
@@ -15,12 +15,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 d955abeb..ef4e8629 100644 --- a/src/test/java/com/amadeus/AmadeusTest.java +++ b/src/test/java/com/amadeus/AmadeusTest.java @@ -52,7 +52,7 @@ public void testBuilderWithInvalidEnvironment() { }*/ @Test public void testVersion() { - assertEquals("should have a version number", Amadeus.VERSION, "5.7.1"); + assertEquals("should have a version number", Amadeus.VERSION, "5.7.2"); } }