Skip to content

Commit

Permalink
Merge pull request #121 from amadeus4dev/release-5.8.2
Browse files Browse the repository at this point in the history
Release 5.8.2
  • Loading branch information
tsolakoua authored Dec 1, 2021
2 parents ae1e4f5 + 372b4b1 commit 08ab3e7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
5.8.2 - 2021-12-01
--------------------
Bug fix in the Traveler resource

5.8.1 - 2021-11-18
--------------------
Bug fix in the FlightOffersSearch resource
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
<dependency>
<groupId>com.amadeus</groupId>
<artifactId>amadeus-java</artifactId>
<version>5.8.1</version>
<version>5.8.2</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:5.8.1"
compile "com.amadeus:amadeus-java:5.8.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=5.8.1
VERSION_NAME=5.8.2

POM_URL=https://github.com/amadeus4dev/amadeus-java
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git
Expand Down
2 changes: 1 addition & 1 deletion 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 = "5.8.1";
public static final String VERSION = "5.8.2";

/**
* <p>
Expand Down
2 changes: 1 addition & 1 deletion 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, "5.8.1");
assertEquals("should have a version number", Amadeus.VERSION, "5.8.2");
}

}

0 comments on commit 08ab3e7

Please sign in to comment.