Skip to content

Commit

Permalink
Preparing release v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Roux committed Jul 4, 2019
1 parent 2b5489a commit 4ab5bc2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ build
.idea
out
.DS_Store
amadeus-java.iml
amadeus-java.iml
Bin/
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,12 +34,12 @@ You can install the SDK via Maven or Gradle.
<dependency>
<groupId>com.amadeus</groupId>
<artifactId>amadeus-java</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:3.1.0"
compile "com.amadeus:amadeus-java:3.2.0"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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[email protected]:amadeus4dev/amadeus-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/amadeus/Amadeus.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";

/**
* <p>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/amadeus/AmadeusTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

}

0 comments on commit 4ab5bc2

Please sign in to comment.