File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed
Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
2+
3+ ## 1.1.1 - 2018-09-09
4+
5+ Bug fix - Some sub-attributes accessors were private and not accessible
6+
7+ ## 1.1.0 - 2018-08-01
8+
9+ New version of the Java library to support our 3 new endpoints:
10+
11+ * [ Flight Most Booked Destinations] ( https://developers.amadeus.com/self-service/category/203/api-doc/27 )
12+
13+ * [ Flight Busiest Traveling Period] ( https://developers.amadeus.com/self-service/category/203/api-doc/28 )
14+
15+ * [ Airline Code Lookup] ( https://developers.amadeus.com/self-service/category/203/api-doc/26 )
16+
17+ ## 1.0.1 - 2018-06-08
18+
19+ Fix documentation typos and publish a new version with signed jar
20+
21+ ## 1.0.0 - 2018-06-01
22+
23+ The first stable version of the Amadeus for Developers Java SDK
Original file line number Diff line number Diff line change @@ -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 >1.2.0 </version >
37+ <version >1.1.1 </version >
3838</dependency >
3939```
4040#### Gradle
4141``` js
42- compile " com.amadeus:amadeus-java:1.2.0 "
42+ compile " com.amadeus:amadeus-java:1.1.1 "
4343```
4444
4545## Getting Started
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class Amadeus extends HTTPClient {
2020 /**
2121 * The API version.
2222 */
23- public static final String VERSION = "1.2.0 " ;
23+ public static final String VERSION = "1.1.1 " ;
2424
2525 /**
2626 * <p>
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public void testBuilderWithInvalidEnvironment() {
5050 }*/
5151
5252 @ Test public void testVersion () {
53- assertEquals ("should have a version number" , Amadeus .VERSION , "1.2.0 " );
53+ assertEquals ("should have a version number" , Amadeus .VERSION , "1.1.1 " );
5454 }
5555
5656}
You can’t perform that action at this time.
0 commit comments