Skip to content

Commit 7c26377

Browse files
authored
Merge pull request #162 from xianqiliu/master
Release 6.0.0
2 parents 0a26841 + cb29c29 commit 7c26377

File tree

5 files changed

+33
-14
lines changed

5 files changed

+33
-14
lines changed

CHANGELOG.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
# Changelog
2+
6.0.0 - 2022-05-19
3+
--------------------
4+
Add support for the [Hotel List API](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-list/api-reference)
5+
6+
Add support for the [Branded Fares Upsell API](https://developers.amadeus.com/self-service/category/air/api-doc/branded-fares-upsell/api-reference)
7+
8+
9+
Add usbType to the SeatMap resource
10+
11+
Improve Test Coverage until 75%
12+
13+
Remove the AI-Generated Photos API
14+
15+
Bug fix in the generating Javadocs
16+
17+
Add support for APIs that need X-HTTP-Method-Override Header
18+
219
5.9.0 - 2022-03-17
320
--------------------
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)
21+
Add support for the [Flight Availablities Search API](https://developers.amadeus.com/self-service/category/air/api-doc/flight-availabilities-search/api-reference)
22+
23+
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)
24+
25+
Add support for the [Location Score API](https://developers.amadeus.com/self-service/category/destination-content/api-doc/location-score/api-reference)
26+
727
Add support for the [Airport Routes API](https://developers.amadeus.com/self-service/category/air/api-doc/airport-routes/api-reference)
828

929
5.8.2 - 2021-12-01
@@ -12,13 +32,13 @@ Bug fix in the Traveler resource
1232

1333
5.8.1 - 2021-11-18
1434
--------------------
15-
Bug fix in the FlightOffersSearch resource
35+
Bug fix in the FlightOffersSearch resource
1636

1737
5.8.0 - 2021-10-20
1838
--------------------
1939
Add support for the [Trip Parser API](https://developers.amadeus.com/self-service/category/trip/api-doc/trip-parser/api-reference). Big thanks to [Siddhartha Dutta](https://github.com/siddydutta) for his contribution! :clap:
2040

21-
Bug fix in the DatedFlight resource
41+
Bug fix in the DatedFlight resource
2242

2343
5.7.3 - 2021-10-08
2444
--------------------
@@ -104,8 +124,7 @@ Add support for the [Hotel Booking API](https://developers.amadeus.com/self-serv
104124

105125
> The Amadeus Hotel Booking API lets you complete bookings at over 150,000 hotels and accommodations around the world. To complete bookings, you must first use the Amadeus Hotel Search API to search for hotel deals, select the desired offer and confirm the final price and availability. You can then use the Hotel Booking API to complete the reservation by providing an offer id, guest information and payment information.
106126
107-
Add support for the [AI-Generated Photos API](https://developers.amadeus.com/self-service/category/trip/api-doc/ai-generated-photos)
108-
127+
Add support for the AI-Generated Photos API
109128
> The AI-Generated Photos API returns a link to download a rendered image of a landscape. The image size is 512x512 pixels and the currently available image categories are BEACH and MOUNTAIN. The link to download the AI-generated picture is valid for 24 hours. This API is an experimental project created by the Amadeus AI Lab using the Nvidia StyleGAN framework. This API is free to use and we welcome any feedback you may have about improvements.
110129
111130
Add support for the [SeatMap Display API](https://developers.amadeus.com/self-service/category/air/api-doc/seatmap-display)
@@ -114,7 +133,7 @@ Add support for the [SeatMap Display API](https://developers.amadeus.com/self-se
114133
115134
Remove support for Most Searched Destinations
116135

117-
Add support for Points of Interest Retrieve endpoint
136+
Add support for Points of Interest Retrieve endpoint
118137

119138
Add support for the [Airport on Time API](https://developers.amadeus.com/self-service/category/air/api-doc/airport-on-time-performance)
120139

@@ -126,7 +145,7 @@ Add support for the [Flight Delay Prediction API](https://developers.amadeus.com
126145
127146
##3.3.0-2019-10-18
128147
Big thanks to [Spiros Batziopoulos](https://github.com/SealSoft) for his contributions! The 2 APIs below were added to the SDK by him! :clap:
129-
148+
130149

131150
Add support for the [Hotel Ratings API](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-ratings)
132151

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.9.0</version>
17+
<version>6.0.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:5.9.0"
22+
compile "com.amadeus:amadeus-java:6.0.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.9.0
2+
VERSION_NAME=6.0.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.9.0";
28+
public static final String VERSION = "6.0.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, "5.9.0", "should have a version number");
64+
assertEquals(Amadeus.VERSION, "6.0.0", "should have a version number");
6565
}
6666

6767
}

0 commit comments

Comments
 (0)