Skip to content

Commit abb2dc6

Browse files
committed
update version and changelog
1 parent fc4cc76 commit abb2dc6

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+
## 4.0.0-2020-04-06
3+
Bug fix - Updated AssociatedRecords to Array in HotelBooking.java
4+
25
## 4.0.0-2020-03-24
36

47
Big thanks to [Spiros Batziopoulos](https://github.com/SealSoft) for his contribution to the Flight Offers Price! :clap:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ You can install the SDK via Maven or Gradle.
3636
<dependency>
3737
<groupId>com.amadeus</groupId>
3838
<artifactId>amadeus-java</artifactId>
39-
<version>4.0.0</version>
39+
<version>4.0.1</version>
4040
</dependency>
4141
```
4242
#### Gradle
4343
```js
44-
compile "com.amadeus:amadeus-java:4.0.0"
44+
compile "com.amadeus:amadeus-java:4.0.1"
4545
```
4646

4747
## 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=4.0.0
2+
VERSION_NAME=4.0.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 = "4.0.0";
28+
public static final String VERSION = "4.0.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, "4.0.0");
55+
assertEquals("should have a version number", Amadeus.VERSION, "4.0.1");
5656
}
5757

5858
}

0 commit comments

Comments
 (0)