diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff85cd41..70c0b5a7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,10 @@
# Changelog
+8.1.0 - 2024-03-11
+--------------------
+Renamed the folder `referenceData` to `referencedata` to follow the Java package naming convention. Many thanks to [Gabriele Atria](https://github.com/gabbor) for the contribution
+
+Updated params to accept String array as input. Many thanks to [Sergei Prokofev](https://github.com/Sprokof) for the contribution
+
8.0.0 - 2023-09-06
--------------------
Decommissioned Travel Restrictions API v2
diff --git a/README.md b/README.md
index ba6ccc12..818221b2 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 e2b4b1f3..3695891e 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, "8.0.0", "should have a version number"); + assertEquals(Amadeus.VERSION, "8.1.0", "should have a version number"); } }