From 95d19620536375b60394cec212f2ae9ec66a66b4 Mon Sep 17 00:00:00 2001 From: MinjiK Date: Tue, 23 Aug 2022 10:10:50 +0200 Subject: [PATCH] release 6.3.0 --- CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- gradle.properties | 2 +- src/main/java/com/amadeus/Amadeus.java | 2 +- src/test/java/com/amadeus/AmadeusTest.java | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 429916d6..d727547c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ # Changelog + +6.3.0 - 2022-08-23 +-------------------- +Add support for the [Travel Restrictions v2](https://developers.amadeus.com/self-service/category/covid-19-and-travel-safety/api-doc/travel-restrictions/api-reference) + +Add support for JDK 8 and 11, Big thanks to [Steve Donovan](https://github.com/steve-donovan) for his contribution! :clap: + +Update Traveler resource model, Big thanks to [Steve Donovan](https://github.com/steve-donovan) for his contribution! :clap: + +Add [SonarCloud](https://sonarcloud.io/summary/overall?id=amadeus4dev_amadeus-java) in GitHub Action + 6.2.1 - 2022-07-22 -------------------- Removed unnecessary toString() on a String. Big thanks to [Steve Donovan](https://github.com/steve-donovan) for his contribution! :clap: diff --git a/README.md b/README.md index 8f5fddc2..3df1eb45 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google com.amadeus amadeus-java - 6.2.1 + 6.3.0 ``` #### Gradle ```js -compile "com.amadeus:amadeus-java:6.2.1" +compile "com.amadeus:amadeus-java:6.3.0" ``` ## Getting Started diff --git a/gradle.properties b/gradle.properties index 1b841032..48049bc0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.amadeus -VERSION_NAME=6.2.1 +VERSION_NAME=6.3.0 POM_URL=https://github.com/amadeus4dev/amadeus-java POM_SCM_URL=git@github.com:amadeus4dev/amadeus-java.git diff --git a/src/main/java/com/amadeus/Amadeus.java b/src/main/java/com/amadeus/Amadeus.java index cc2c90b5..f14bb5c6 100644 --- a/src/main/java/com/amadeus/Amadeus.java +++ b/src/main/java/com/amadeus/Amadeus.java @@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient { /** * The API version. */ - public static final String VERSION = "6.2.1"; + public static final String VERSION = "6.3.0"; /** *

diff --git a/src/test/java/com/amadeus/AmadeusTest.java b/src/test/java/com/amadeus/AmadeusTest.java index e985705c..ab0ff215 100644 --- a/src/test/java/com/amadeus/AmadeusTest.java +++ b/src/test/java/com/amadeus/AmadeusTest.java @@ -61,7 +61,7 @@ public void testBuilderWithInvalidEnvironment() { } @Test public void testVersion() { - assertEquals(Amadeus.VERSION, "6.2.1", "should have a version number"); + assertEquals(Amadeus.VERSION, "6.3.0", "should have a version number"); } }