File tree Expand file tree Collapse file tree 7 files changed +19
-6
lines changed
libs/api/src/lib/generated Expand file tree Collapse file tree 7 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11"""Abrechnung - feature complete payment management and bookkeeping."""
22
3- __version__ = "1.4 .0"
3+ __version__ = "1.5 .0"
44
55MAJOR_VERSION = __version__ .split ("." )[0 ]
66MINOR_VERSION = __version__ .split ("." )[1 ]
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 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+
17abrechnung (1.4.0) stable; urgency=medium
28
39 * Abrechnung release 1.4.0
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export type OpenAPIConfig = {
2121
2222export 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 ,
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ plugins = ["pydantic.mypy"]
9393source = [" abrechnung" ]
9494
9595[tool .bumpversion ]
96- current_version = " 1.4 .0"
96+ current_version = " 1.5 .0"
9797commit = false
9898files = [
9999 { filename = " abrechnung/__init__.py" },
You can’t perform that action at this time.
0 commit comments