diff --git a/pom.xml b/pom.xml
index e361a07..65d348d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
de.olech2412.adapter
db-adapter-v6
- 2.2.0
+ 2.2.1
db-adapter-v6
This is an adapter for this rest-api: https://github.com/derhuerst/db-rest.
It can be used as a maven dependency and provides all models
diff --git a/release-changes.md b/release-changes.md
index 5ed12ed..f4e67b6 100644
--- a/release-changes.md
+++ b/release-changes.md
@@ -2,18 +2,27 @@
## Description
-This file contains the changes made in each release of the project since version 2.0.0
+This file contains the changes made in each release of the project since version 2.2.0
In the following table you can see the versions and the release dates of the project.
Click on the version to get to the release changes.
-| Version | Release Date |
-|---------------|--------------|
-| [2.0.0](#110) | unknown |
-
+| Version | Release Date | Release Type |
+|-----------------|--------------|--------------|
+| [2.2.1](#2.2.1) | 20.02.2024 | Minor |
+| [2.2.0](#2.2.0) | 20.02.2024 | Patch |
#TODO: Add the changes of the versions
-## 2.0.0
+## [2.2.1](#2.2.1) (20.02.2024) Patch Release
+
+### Bugfixes
+
+- Fixed a bug that the price class does not provide any getter or setter methods
+- Fixed a bug that the Location class (for journeys) does not provide any getter or setter methods
+
+## [2.2.0](#2.2.0) (20.02.2024) Minor Release
-### Description
+### Support for "journeys"
+- Added support for "journeys" in the project
+- Queries for journeys are now supported with the most features
\ No newline at end of file
diff --git a/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Location.java b/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Location.java
index d1f2739..e17bdf3 100644
--- a/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Location.java
+++ b/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Location.java
@@ -1,8 +1,15 @@
package de.olech2412.adapter.dbadapter.model.journey.sub;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
/**
* Represents a location in the system.
*/
+@Getter
+@Setter
+@ToString
public class Location {
/**
* The type of the location.
diff --git a/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Price.java b/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Price.java
index f5a07cd..79a3cf8 100644
--- a/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Price.java
+++ b/src/main/java/de/olech2412/adapter/dbadapter/model/journey/sub/Price.java
@@ -1,8 +1,15 @@
package de.olech2412.adapter.dbadapter.model.journey.sub;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
/**
* Represents the price of a journey.
*/
+@Getter
+@Setter
+@ToString
public class Price {
/**
* The amount of the price.