Skip to content

Commit 021e52e

Browse files
authored
Merge pull request #180 from xianqiliu/release/v6.2.0
release 6.2.0
2 parents b98086c + cb52092 commit 021e52e

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
6.2.0 - 2022-07-18
3+
--------------------
4+
Add support for the [Airline Routes API](https://developers.amadeus.com/self-service/category/air/api-doc/airline-routes/api-reference). Big thanks to [Siddhartha Dutta](https://github.com/siddydutta) for his contribution! :clap:
5+
6+
Add support for the [Hotel Name Autocomplete API](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-name-autocomplete/api-reference)
7+
8+
Add support for the [City Search API](https://developers.amadeus.com/self-service/category/trip/api-doc/city-search/api-reference)
9+
10+
Bug fix in the DatedFlight.Timing resource. Big thanks to [Frank Koornstra](https://github.com/frankkoornstra) for his contribution! :clap:
11+
12+
Add email to the HotelOffer.HotelContact resource
13+
14+
Update GSON dependency
15+
216
6.1.0 - 2022-05-23
317
--------------------
418
Add support for the [Hotel Search API v3](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-search/api-reference)

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>6.1.0</version>
17+
<version>6.2.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:6.1.0"
22+
compile "com.amadeus:amadeus-java:6.2.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=6.1.0
2+
VERSION_NAME=6.2.0
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL=git@github.com: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 = "6.1.0";
28+
public static final String VERSION = "6.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
@@ -61,7 +61,7 @@ public void testBuilderWithInvalidEnvironment() {
6161
}
6262

6363
@Test public void testVersion() {
64-
assertEquals(Amadeus.VERSION, "6.1.0", "should have a version number");
64+
assertEquals(Amadeus.VERSION, "6.2.0", "should have a version number");
6565
}
6666

6767
}

0 commit comments

Comments
 (0)