Skip to content

Commit

Permalink
bump version to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Roux committed Oct 28, 2018
1 parent 78e7685 commit 19bc30a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.1.2 - 2018-10-28
Contribution by [nirmalvp](https://github.com/nirmalvp)

Bug fix - The AMADEUS_HOST environment variable wasn't working

## 1.1.1 - 2018-09-09

Bug fix - Some sub-attributes accessors were private and not accessible
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ You can install the SDK via Maven or Gradle.
<dependency>
<groupId>com.amadeus</groupId>
<artifactId>amadeus-java</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:1.1.1"
compile "com.amadeus:amadeus-java:1.1.2"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.amadeus
VERSION_NAME=1.1.1
VERSION_NAME=1.1.2

POM_URL=https://github.com/amadeus4dev/amadeus-java
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/amadeus/Amadeus.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient {
/**
* The API version.
*/
public static final String VERSION = "1.1.1";
public static final String VERSION = "1.1.2";

/**
* <p>
Expand Down Expand Up @@ -90,4 +90,4 @@ public static Configuration builder(Map<String, String> environment) {

return configuration;
}
}
}
4 changes: 2 additions & 2 deletions src/test/java/com/amadeus/AmadeusTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void testBuilderWithInvalidEnvironment() {
}*/

@Test public void testVersion() {
assertEquals("should have a version number", Amadeus.VERSION, "1.1.1");
assertEquals("should have a version number", Amadeus.VERSION, "1.1.2");
}

}
}

0 comments on commit 19bc30a

Please sign in to comment.