diff --git a/CHANGELOG.md b/CHANGELOG.md
index e79ed93e..e2819828 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
--------------------
diff --git a/README.md b/README.md
index 14635295..01fa242f 100644
--- a/README.md
+++ b/README.md
@@ -14,12 +14,12 @@ This library requires Java 1.7+ and the [Gson library](https://github.com/google
diff --git a/src/test/java/com/amadeus/AmadeusTest.java b/src/test/java/com/amadeus/AmadeusTest.java index 5d9e0b5b..3594a415 100644 --- a/src/test/java/com/amadeus/AmadeusTest.java +++ b/src/test/java/com/amadeus/AmadeusTest.java @@ -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"); } }