Skip to content

Commit 071c35f

Browse files
committed
chore: release 0.14.0
1 parent d92f3b8 commit 071c35f

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## Unreleased
44

5-
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.3...HEAD)
5+
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.14.0...HEAD)
6+
7+
## 0.14.0 (2024-08-16)
8+
9+
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.3...v0.14.0)
10+
11+
- fix non-interactible transaction position shares #209
612

713
## 0.13.3 (2024-03-02)
814

abrechnung/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Abrechnung - feature complete payment management and bookkeeping."""
22

3-
__version__ = "0.13.3"
3+
__version__ = "0.14.0"
44

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

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
abrechnung (0.14.0) stable; urgency=medium
2+
3+
* Abrechnung release 0.14.0
4+
5+
-- Michael Loipführer <[email protected]> Fri, 16 Aug 2024 23:57:11
6+
17
abrechnung (0.13.3) stable; urgency=medium
28

39
* Abrechnung release 0.13.3

frontend/apps/mobile/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ android {
7979
applicationId "lol.sft.abrechnung"
8080
minSdkVersion rootProject.ext.minSdkVersion
8181
targetSdkVersion rootProject.ext.targetSdkVersion
82-
versionCode 7
83-
versionName "0.13.3"
82+
versionCode 8
83+
versionName "0.14.0"
8484

8585
testBuildType System.getProperty('testBuildType', 'debug')
8686
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

frontend/libs/api/src/lib/api.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export class HttpError implements IHttpError {
1010
}
1111

1212
// accepted version range of the backend api, [min, max)
13-
export const MIN_BACKEND_VERSION = "0.13.0";
14-
export const MAX_BACKEND_VERSION = "0.14.0";
13+
export const MIN_BACKEND_VERSION = "0.14.0";
14+
export const MAX_BACKEND_VERSION = "0.15.0";
1515

1616
export class Api {
1717
private baseApiUrl: string;

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ source = [
106106
]
107107

108108
[tool.bumpversion]
109-
current_version = "0.13.3"
109+
current_version = "0.14.0"
110110
commit = false
111111
files = [
112112
{ filename = "abrechnung/__init__.py" },

0 commit comments

Comments
 (0)