Skip to content

Commit b549665

Browse files
authored
Merge pull request #243 from amadeus4dev/release6.5.0
Release 6.5.0
2 parents 5a402cb + d5cf2f1 commit b549665

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Changelog
2+
6.5.0 - 2023-01-18
3+
--------------------
4+
Added missing assertions on integrations tests
5+
6+
Split long unit tests methods in more smaller ones
7+
8+
Updated package names to follow Java conventions
9+
10+
Updated all resources to make sure field declarations are on top of constructors
11+
12+
Updated method names to camelcase to follow Java conventions
13+
14+
Updated contributor's guide
15+
16+
Fixed warnings from SonarCloud and several improvements to improve code quality
217

318
6.4.1 - 2022-12-21
419
--------------------

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
1414
<dependency>
1515
<groupId>com.amadeus</groupId>
1616
<artifactId>amadeus-java</artifactId>
17-
<version>6.4.1</version>
17+
<version>6.5.0</version>
1818
</dependency>
1919
```
2020
#### Gradle
2121
```js
22-
compile "com.amadeus:amadeus-java:6.4.1"
22+
compile "com.amadeus:amadeus-java:6.5.0"
2323
```
2424

2525
## 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=6.4.1
2+
VERSION_NAME=6.5.0
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 = "6.4.1";
28+
public static final String VERSION = "6.5.0";
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
@@ -62,7 +62,7 @@ public void testBuilderWithInvalidEnvironment() {
6262
}
6363

6464
@Test public void testVersion() {
65-
assertEquals(Amadeus.VERSION, "6.4.1", "should have a version number");
65+
assertEquals(Amadeus.VERSION, "6.5.0", "should have a version number");
6666
}
6767

6868
}

0 commit comments

Comments
 (0)