Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
10.0.0 - 2024-10-07
--------------------
Decommissioned Trip Parser API

9.1.0 - 2024-08-21
--------------------
Add support for the [Hotel Booking v2 API](https://developers.amadeus.com/self-service/category/hotels/api-doc/hotel-booking/v/2.0)
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>9.1.0</version>
<version>10.0.0</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:9.1.0"
compile "com.amadeus:amadeus-java:10.0.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=9.1.0
VERSION_NAME=10.0.0

POM_URL=https://github.com/amadeus4dev/amadeus-java
[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 @@ -24,7 +24,7 @@ public class Amadeus extends HTTPClient {
/**
* The API version.
*/
public static final String VERSION = "9.1.0";
public static final String VERSION = "10.0.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, "9.1.0", "should have a version number");
assertEquals(Amadeus.VERSION, "10.0.0", "should have a version number");
}

}