Skip to content

Commit

Permalink
release 6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tsolakoua committed Jan 18, 2023
1 parent 5a402cb commit d5cf2f1
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Changelog
6.5.0 - 2023-01-18
--------------------
Added missing assertions on integrations tests

Split long unit tests methods in more smaller ones

Updated package names to follow Java conventions

Updated all resources to make sure field declarations are on top of constructors

Updated method names to camelcase to follow Java conventions

Updated contributor's guide

Fixed warnings from SonarCloud and several improvements to improve code quality

6.4.1 - 2022-12-21
--------------------
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
<dependency>
<groupId>com.amadeus</groupId>
<artifactId>amadeus-java</artifactId>
<version>6.4.1</version>
<version>6.5.0</version>
</dependency>
```
#### Gradle
```js
compile "com.amadeus:amadeus-java:6.4.1"
compile "com.amadeus:amadeus-java:6.5.0"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.amadeus
VERSION_NAME=6.4.1
VERSION_NAME=6.5.0

POM_URL=https://github.com/amadeus4dev/amadeus-java
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/amadeus/Amadeus.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Amadeus extends HTTPClient {
/**
* The API version.
*/
public static final String VERSION = "6.4.1";
public static final String VERSION = "6.5.0";

/**
* <p>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/amadeus/AmadeusTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void testBuilderWithInvalidEnvironment() {
}

@Test public void testVersion() {
assertEquals(Amadeus.VERSION, "6.4.1", "should have a version number");
assertEquals(Amadeus.VERSION, "6.5.0", "should have a version number");
}

}

0 comments on commit d5cf2f1

Please sign in to comment.