diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b95c648..4bf76345 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,7 @@
# Changelog
+## 5.3.1-2020-08-20
+[Bug](https://github.com/amadeus4dev/amadeus-java/issues/85) fix in SafePlace resource which didn't return the safetyScores - reported by [jvence](https://github.com/jvence), thank you very much!
+
## 5.3.0-2020-08-06
Add support for the [Travel Recommendations API](https://developers.amadeus.com/self-service/category/trip/api-doc/travel-recommendations)
diff --git a/README.md b/README.md
index 07535ce6..463c06f0 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 f9e1d2c2..bc9ca674 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.3.0"); + assertEquals("should have a version number", Amadeus.VERSION, "5.3.1"); } }