Skip to content

Commit 97f003d

Browse files
committed
chore: release 1.5.0
1 parent ab0537e commit 97f003d

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
## Unreleased
44

5-
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v1.4.0...HEAD)
5+
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v1.5.0...HEAD)
6+
7+
## 1.5.0 (2026-01-05)
8+
9+
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v1.4.0...v1.5.0)
10+
11+
- add group export and import via json dumps
12+
- allow empty valid until in group invite links
613

714
## 1.4.0 (2026-01-03)
815

abrechnung/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Abrechnung - feature complete payment management and bookkeeping."""
22

3-
__version__ = "1.4.0"
3+
__version__ = "1.5.0"
44

55
MAJOR_VERSION = __version__.split(".")[0]
66
MINOR_VERSION = __version__.split(".")[1]

api/openapi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
abrechnung (1.5.0) stable; urgency=medium
2+
3+
* Abrechnung release 1.5.0
4+
5+
-- Michael Loipführer <milo@sft.lol> Mon, 5 Jan 2026 17:37:54
6+
17
abrechnung (1.4.0) stable; urgency=medium
28

39
* Abrechnung release 1.4.0

libs/api/src/lib/generated/Client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class Client {
2727
constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
2828
this.request = new HttpRequest({
2929
BASE: config?.BASE ?? "",
30-
VERSION: config?.VERSION ?? "1.4.0",
30+
VERSION: config?.VERSION ?? "1.5.0",
3131
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
3232
CREDENTIALS: config?.CREDENTIALS ?? "include",
3333
TOKEN: config?.TOKEN,

libs/api/src/lib/generated/core/OpenAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
2121

2222
export const OpenAPI: OpenAPIConfig = {
2323
BASE: "",
24-
VERSION: "1.4.0",
24+
VERSION: "1.5.0",
2525
WITH_CREDENTIALS: false,
2626
CREDENTIALS: "include",
2727
TOKEN: undefined,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ plugins = ["pydantic.mypy"]
9393
source = ["abrechnung"]
9494

9595
[tool.bumpversion]
96-
current_version = "1.4.0"
96+
current_version = "1.5.0"
9797
commit = false
9898
files = [
9999
{ filename = "abrechnung/__init__.py" },

0 commit comments

Comments
 (0)