Skip to content

Commit

Permalink
Merge pull request #258 from amadeus4dev/release8.1.0
Browse files Browse the repository at this point in the history
Release 8.1.0
  • Loading branch information
tsolakoua authored Mar 11, 2024
2 parents e6c611d + 969b969 commit d6b95a4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
8.1.0 - 2024-03-11
--------------------
Renamed the folder `referenceData` to `referencedata` to follow the Java package naming convention. Many thanks to [Gabriele Atria](https://github.com/gabbor) for the contribution

Updated params to accept String array as input. Many thanks to [Sergei Prokofev](https://github.com/Sprokof) for the contribution

8.0.0 - 2023-09-06
--------------------
Decommissioned Travel Restrictions API v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,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>8.0.0</version>
<version>8.1.0</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:8.0.0"
compile "com.amadeus:amadeus-java:8.1.0"
```

## 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=8.0.0
VERSION_NAME=8.1.0

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 = "8.0.0";
public static final String VERSION = "8.1.0";

/**
* <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 @@ -62,7 +62,7 @@ public void testBuilderWithInvalidEnvironment() {
}

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

}

0 comments on commit d6b95a4

Please sign in to comment.