Skip to content

Commit ece279e

Browse files
authored
Merge pull request #253 from amadeus4dev/release7.1.0
Release 7.1.0
2 parents a71d586 + a889ed9 commit ece279e

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Changelog
2+
7.1.0 - 2023-06-20
3+
--------------------
4+
Add support for the [Transfer Search API](https://developers.amadeus.com/self-service/category/cars-and-transfers/api-doc/transfer-search/api-reference)
5+
6+
Add support for the [Transfer Booking API](https://developers.amadeus.com/self-service/category/cars-and-transfers/api-doc/transfer-booking/api-reference)
7+
8+
Add support for the [Transfer Management API](https://developers.amadeus.com/self-service/category/cars-and-transfers/api-doc/transfer-management/api-reference)
9+
10+
211
7.0.0 - 2023-01-30
312
--------------------
413
Decommissioned Travel Restrictions API v1

README.md

+2-2
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>7.0.0</version>
17+
<version>7.1.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:7.0.0"
22+
compile "com.amadeus:amadeus-java:7.1.0"
2323
```
2424

2525
## Getting Started

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.amadeus
2-
VERSION_NAME=7.0.0
2+
VERSION_NAME=7.1.0
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient {
2525
/**
2626
* The API version.
2727
*/
28-
public static final String VERSION = "7.0.0";
28+
public static final String VERSION = "7.1.0";
2929

3030
/**
3131
* <p>

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

+1-1
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, "7.0.0", "should have a version number");
65+
assertEquals(Amadeus.VERSION, "7.1.0", "should have a version number");
6666
}
6767

6868
}

0 commit comments

Comments
 (0)