diff --git a/.gitignore b/.gitignore index 53081619..301ab319 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ build .idea out .DS_Store -amadeus-java.iml \ No newline at end of file +amadeus-java.iml +Bin/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3367f769..2973b200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 3.2.0 - 2019-06-04 +Release of the [Flight Choice Prediction API](https://developers.amadeus.com/self-service/category/air/api-doc/flight-choice-prediction) + +> The Flight Choice Prediction API allows developers to forecast traveler choices in the context of search & shopping. Exposing machine learning & AI services for travel, this API consumes the output of the Flight Low-fare Search API and returns augmented content with probabilities of choices for each flight offers. + ## 3.1.0 - 2019-04-02 # Points of interest API @@ -67,7 +72,7 @@ Bug fix - Some sub-attributes accessors were private and not accessible ## 1.1.0 - 2018-08-01 -New version of the Java library to support our 3 new endpoints: +New version of the Java library to support our 3 new endpoints: * [Flight Most Booked Destinations](https://developers.amadeus.com/self-service/category/203/api-doc/27) diff --git a/README.md b/README.md index df34c0e9..f7c09a9e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ documentation](https://amadeus4dev.github.io/amadeus-java/) on ## Installation -This library requires Java 1.7+ and the the [Gson library](https://github.com/google/gson). +This library requires Java 1.7+ and the the [Gson library](https://github.com/google/gson). With __Maven__ you need to add to your pom.xml ```xml @@ -34,12 +34,12 @@ You can install the SDK via Maven or Gradle. com.amadeus amadeus-java - 3.1.0 + 3.2.0 ``` #### Gradle ```js -compile "com.amadeus:amadeus-java:3.1.0" +compile "com.amadeus:amadeus-java:3.2.0" ``` ## Getting Started diff --git a/gradle.properties b/gradle.properties index d9d4beed..e66c96e6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.amadeus -VERSION_NAME=3.1.0 +VERSION_NAME=3.2.0 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 915b6354..80be2c71 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 = "3.1.0"; + public static final String VERSION = "3.2.0"; /** *

diff --git a/src/test/java/com/amadeus/AmadeusTest.java b/src/test/java/com/amadeus/AmadeusTest.java index aa3cad04..15d3711b 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, "3.1.0"); + assertEquals("should have a version number", Amadeus.VERSION, "3.2.0"); } }