Skip to content

Commit 72b7f39

Browse files
author
Alvaro Navarro
committed
Release version 3.1.0
1 parent 17dee21 commit 72b7f39

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Changelog
2+
3+
## 3.1.0 - 2019-04-02
4+
5+
# Points of interest API
6+
7+
New version of the Java SDK to support a new endpoint:
8+
9+
* [Points of Interest](https://developers.amadeus.com/self-service/category/210/api-doc/55/api-docs-and-example/10014)
10+
211
## 3.0.1 - 2019-01-28
312
[Bug #21](https://github.com/amadeus4dev/amadeus-java/issues/21) reported by [vht210](https://github.com/vht210), thank you very much!
413

README.md

Lines changed: 3 additions & 3 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.1</version>
37+
<version>3.1.0</version>
3838
</dependency>
3939
```
4040
#### Gradle
4141
```js
42-
compile "com.amadeus:amadeus-java:3.0.1"
42+
compile "com.amadeus:amadeus-java:3.1.0"
4343
```
4444

4545
## Getting Started
@@ -293,7 +293,7 @@ PointOfInterest[] pointsOfInterest = amadeus.referenceData.locations.pointsOfInt
293293

294294
// What are the popular places in Barcelona? (based on a square)
295295
PointOfInterest[] pointsOfInterest = amadeus.referenceData.locations.pointsOfInterest.bySquare.get(Params
296-
.with("norh", "41.397158")
296+
.with("north", "41.397158")
297297
.and("west", "2.160873")
298298
.and("south", "41.394582")
299299
.and("east", "2.177181"));

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.1
2+
VERSION_NAME=3.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

Lines changed: 2 additions & 2 deletions
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.1";
28+
public static final String VERSION = "3.1.0";
2929

3030
/**
3131
* <p>
@@ -90,4 +90,4 @@ public static Configuration builder(Map<String, String> environment) {
9090

9191
return configuration;
9292
}
93-
}
93+
}

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

Lines changed: 2 additions & 2 deletions
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.1");
55+
assertEquals("should have a version number", Amadeus.VERSION, "3.1.0");
5656
}
5757

58-
}
58+
}

0 commit comments

Comments
 (0)