Skip to content

Commit 19bc30a

Browse files
author
Anthony Roux
committed
bump version to 1.1.2
1 parent 78e7685 commit 19bc30a

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.2 - 2018-10-28
4+
Contribution by [nirmalvp](https://github.com/nirmalvp)
5+
6+
Bug fix - The AMADEUS_HOST environment variable wasn't working
7+
38
## 1.1.1 - 2018-09-09
49

510
Bug fix - Some sub-attributes accessors were private and not accessible

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.1.1</version>
37+
<version>1.1.2</version>
3838
</dependency>
3939
```
4040
#### Gradle
4141
```js
42-
compile "com.amadeus:amadeus-java:1.1.1"
42+
compile "com.amadeus:amadeus-java:1.1.2"
4343
```
4444

4545
## 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=1.1.1
2+
VERSION_NAME=1.1.2
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: 2 additions & 2 deletions
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 = "1.1.1";
28+
public static final String VERSION = "1.1.2";
2929

3030
/**
3131
* <p>
@@ -90,4 +90,4 @@ public static Configuration builder(Map<String, String> environment) {
9090

9191
return configuration;
9292
}
93-
}
93+
}

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

Lines changed: 2 additions & 2 deletions
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, "1.1.1");
55+
assertEquals("should have a version number", Amadeus.VERSION, "1.1.2");
5656
}
5757

58-
}
58+
}

0 commit comments

Comments
 (0)