Skip to content

Commit

Permalink
new version 2.2.1 with bug fixes -> take a look at release-changes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
olech2412 committed Feb 20, 2024
1 parent 3bd409d commit 8fe3737
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.olech2412.adapter</groupId>
<artifactId>db-adapter-v6</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
<name>db-adapter-v6</name>
<description>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
Expand Down
23 changes: 16 additions & 7 deletions release-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 8fe3737

Please sign in to comment.