Skip to content

Commit 8e6d788

Browse files
authored
Merge pull request #266 from amadeus4dev/release-9.1.0
Release 9.1.0
2 parents ccc730e + 821e082 commit 8e6d788

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
9.1.0 - 2024-08-21
3+
--------------------
4+
Add support for the [Hotel Booking v2 API](https://developers.amadeus.com/self-service/category/hotels/api-doc/hotel-booking/v/2.0)
5+
6+
Add middle name in Traveler model
7+
28
9.0.0 - 2024-04-17
39
--------------------
410
Decommissioned Safe Place API

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
1414
<dependency>
1515
<groupId>com.amadeus</groupId>
1616
<artifactId>amadeus-java</artifactId>
17-
<version>9.0.0</version>
17+
<version>9.1.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:9.0.0"
22+
compile "com.amadeus:amadeus-java:9.1.0"
2323
```
2424

2525
## 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=9.0.0
2+
VERSION_NAME=9.1.0
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL=git@github.com:amadeus4dev/amadeus-java.git

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Amadeus extends HTTPClient {
2424
/**
2525
* The API version.
2626
*/
27-
public static final String VERSION = "9.0.0";
27+
public static final String VERSION = "9.1.0";
2828

2929
/**
3030
* <p>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void testBuilderWithInvalidEnvironment() {
6262
}
6363

6464
@Test public void testVersion() {
65-
assertEquals(Amadeus.VERSION, "9.0.0", "should have a version number");
65+
assertEquals(Amadeus.VERSION, "9.1.0", "should have a version number");
6666
}
6767

6868
}

0 commit comments

Comments
 (0)