Skip to content

Commit 8a77ebb

Browse files
authored
Merge pull request #89 from amadeus4dev/release5.3.1
Release 5.3.1
2 parents 1b82142 + 0a5b549 commit 8a77ebb

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## 5.3.1-2020-08-20
3+
[Bug](https://github.com/amadeus4dev/amadeus-java/issues/85) fix in SafePlace resource which didn't return the safetyScores - reported by [jvence](https://github.com/jvence), thank you very much!
4+
25
## 5.3.0-2020-08-06
36
Add support for the [Travel Recommendations API](https://developers.amadeus.com/self-service/category/trip/api-doc/travel-recommendations)
47

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
1515
<dependency>
1616
<groupId>com.amadeus</groupId>
1717
<artifactId>amadeus-java</artifactId>
18-
<version>5.3.0</version>
18+
<version>5.3.1</version>
1919
</dependency>
2020
```
2121
#### Gradle
2222
```js
23-
compile "com.amadeus:amadeus-java:5.3.0"
23+
compile "com.amadeus:amadeus-java:5.3.1"
2424
```
2525

2626
## 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=5.3.0
2+
VERSION_NAME=5.3.1
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

Lines changed: 1 addition & 1 deletion
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 = "5.3.0";
28+
public static final String VERSION = "5.3.1";
2929

3030
/**
3131
* <p>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void testBuilderWithInvalidEnvironment() {
5252
}*/
5353

5454
@Test public void testVersion() {
55-
assertEquals("should have a version number", Amadeus.VERSION, "5.3.0");
55+
assertEquals("should have a version number", Amadeus.VERSION, "5.3.1");
5656
}
5757

5858
}

0 commit comments

Comments
 (0)