Skip to content

Commit 46a1526

Browse files
author
Anthony Roux
committed
Releasing version 3.0.1
1 parent 4930635 commit 46a1526

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
## 3.0.1 - 2019-01-28
3+
[Bug #21](https://github.com/amadeus4dev/amadeus-java/issues/21) reported by [vht210](https://github.com/vht210), thank you very much!
4+
5+
Fix a bug in the Request.java with HTTPURLConnection, making the SDK doing only POST calls in Android.
6+
27
## 3.0.0 - 2019-01-22
38

49
## Hotel Search v2 has been deployed (Hotel Search v1 is now deprecated)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ You can install the SDK via Maven or Gradle.
3434
<dependency>
3535
<groupId>com.amadeus</groupId>
3636
<artifactId>amadeus-java</artifactId>
37-
<version>3.0.0</version>
37+
<version>3.0.1</version>
3838
</dependency>
3939
```
4040
#### Gradle
4141
```js
42-
compile "com.amadeus:amadeus-java:3.0.0"
42+
compile "com.amadeus:amadeus-java:3.0.1"
4343
```
4444

4545
## 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=3.0.0
2+
VERSION_NAME=3.0.1
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL=git@github.com: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 = "3.0.0";
28+
public static final String VERSION = "3.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, "3.0.0");
55+
assertEquals("should have a version number", Amadeus.VERSION, "3.0.1");
5656
}
5757

5858
}

0 commit comments

Comments
 (0)