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 com.amadeus amadeus-java - 5.3.0 + 5.3.1 ``` #### Gradle ```js -compile "com.amadeus:amadeus-java:5.3.0" +compile "com.amadeus:amadeus-java:5.3.1" ``` ## Getting Started diff --git a/gradle.properties b/gradle.properties index cd243a2c..76f4a428 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.amadeus -VERSION_NAME=5.3.0 +VERSION_NAME=5.3.1 POM_URL=https://github.com/amadeus4dev/amadeus-java POM_SCM_URL=git@github.com:amadeus4dev/amadeus-java.git diff --git a/src/main/java/com/amadeus/Amadeus.java b/src/main/java/com/amadeus/Amadeus.java index 5dad4dfe..97c4d74f 100644 --- a/src/main/java/com/amadeus/Amadeus.java +++ b/src/main/java/com/amadeus/Amadeus.java @@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient { /** * The API version. */ - public static final String VERSION = "5.3.0"; + public static final String VERSION = "5.3.1"; /** *

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"); } }