Skip to content

Commit 46044b1

Browse files
author
Anthony Roux
committed
Change the version to 1.1.1 (bug fix) and update the changelog
1 parent fb56c18 commit 46044b1

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)