Skip to content

Commit 4ab5bc2

Browse files
author
Anthony Roux
committed
Preparing release v3.2.0
1 parent 2b5489a commit 4ab5bc2

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ build
77
.idea
88
out
99
.DS_Store
10-
amadeus-java.iml
10+
amadeus-java.iml
11+
Bin/

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.2.0 - 2019-06-04
4+
Release of the [Flight Choice Prediction API](https://developers.amadeus.com/self-service/category/air/api-doc/flight-choice-prediction)
5+
6+
> 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.
7+
38
## 3.1.0 - 2019-04-02
49

510
# Points of interest API
@@ -67,7 +72,7 @@ Bug fix - Some sub-attributes accessors were private and not accessible
6772

6873
## 1.1.0 - 2018-08-01
6974

70-
New version of the Java library to support our 3 new endpoints:
75+
New version of the Java library to support our 3 new endpoints:
7176

7277
* [Flight Most Booked Destinations](https://developers.amadeus.com/self-service/category/203/api-doc/27)
7378

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation](https://amadeus4dev.github.io/amadeus-java/) on
1111

1212
## Installation
1313

14-
This library requires Java 1.7+ and the the [Gson library](https://github.com/google/gson).
14+
This library requires Java 1.7+ and the the [Gson library](https://github.com/google/gson).
1515

1616
With __Maven__ you need to add to your pom.xml
1717
```xml
@@ -34,12 +34,12 @@ You can install the SDK via Maven or Gradle.
3434
<dependency>
3535
<groupId>com.amadeus</groupId>
3636
<artifactId>amadeus-java</artifactId>
37-
<version>3.1.0</version>
37+
<version>3.2.0</version>
3838
</dependency>
3939
```
4040
#### Gradle
4141
```js
42-
compile "com.amadeus:amadeus-java:3.1.0"
42+
compile "com.amadeus:amadeus-java:3.2.0"
4343
```
4444

4545
## Getting Started

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.amadeus
2-
VERSION_NAME=3.1.0
2+
VERSION_NAME=3.2.0
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git

src/main/java/com/amadeus/Amadeus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient {
2525
/**
2626
* The API version.
2727
*/
28-
public static final String VERSION = "3.1.0";
28+
public static final String VERSION = "3.2.0";
2929

3030
/**
3131
* <p>

src/test/java/com/amadeus/AmadeusTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void testBuilderWithInvalidEnvironment() {
5252
}*/
5353

5454
@Test public void testVersion() {
55-
assertEquals("should have a version number", Amadeus.VERSION, "3.1.0");
55+
assertEquals("should have a version number", Amadeus.VERSION, "3.2.0");
5656
}
5757

5858
}

0 commit comments

Comments
 (0)