Skip to content

Commit e9277af

Browse files
authored
Merge pull request #132 from amadeus4dev/release5.9.0
Release 5.9.0
2 parents d93a536 + 695a00e commit e9277af

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Changelog
2+
5.9.0 - 2022-03-17
3+
--------------------
4+
Add support for the [Flight Availablities Search API](https://developers.amadeus.com/self-service/category/air/api-doc/flight-availabilities-search/api-reference)
5+
Add support for the [Travel Restrictions API](https://developers.amadeus.com/self-service/category/covid-19-and-travel-safety/api-doc/travel-restrictions/api-reference)
6+
Add support for the [Location Score API](https://developers.amadeus.com/self-service/category/destination-content/api-doc/location-score/api-reference)
7+
Add support for the [Airport Routes API](https://developers.amadeus.com/self-service/category/air/api-doc/airport-routes/api-reference)
8+
29
5.8.2 - 2021-12-01
310
--------------------
411
Bug fix in the Traveler resource

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
1414
<dependency>
1515
<groupId>com.amadeus</groupId>
1616
<artifactId>amadeus-java</artifactId>
17-
<version>5.8.2</version>
17+
<version>5.9.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:5.8.2"
22+
compile "com.amadeus:amadeus-java:5.9.0"
2323
```
2424

2525
## 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=5.8.2
2+
VERSION_NAME=5.9.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 = "5.8.2";
28+
public static final String VERSION = "5.9.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, "5.8.2");
55+
assertEquals("should have a version number", Amadeus.VERSION, "5.9.0");
5656
}
5757

5858
}

0 commit comments

Comments
 (0)