Skip to content

Commit

Permalink
chore: release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Aug 16, 2024
1 parent d92f3b8 commit 071c35f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Unreleased

[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.3...HEAD)
[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.14.0...HEAD)

## 0.14.0 (2024-08-16)

[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.3...v0.14.0)

- fix non-interactible transaction position shares #209

## 0.13.3 (2024-03-02)

Expand Down
2 changes: 1 addition & 1 deletion abrechnung/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Abrechnung - feature complete payment management and bookkeeping."""

__version__ = "0.13.3"
__version__ = "0.14.0"

MAJOR_VERSION = __version__.split(".")[0]
MINOR_VERSION = __version__.split(".")[1]
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
abrechnung (0.14.0) stable; urgency=medium

* Abrechnung release 0.14.0

-- Michael Loipführer <[email protected]> Fri, 16 Aug 2024 23:57:11

abrechnung (0.13.3) stable; urgency=medium

* Abrechnung release 0.13.3
Expand Down
4 changes: 2 additions & 2 deletions frontend/apps/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ android {
applicationId "lol.sft.abrechnung"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 7
versionName "0.13.3"
versionCode 8
versionName "0.14.0"

testBuildType System.getProperty('testBuildType', 'debug')
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down
4 changes: 2 additions & 2 deletions frontend/libs/api/src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export class HttpError implements IHttpError {
}

// accepted version range of the backend api, [min, max)
export const MIN_BACKEND_VERSION = "0.13.0";
export const MAX_BACKEND_VERSION = "0.14.0";
export const MIN_BACKEND_VERSION = "0.14.0";
export const MAX_BACKEND_VERSION = "0.15.0";

export class Api {
private baseApiUrl: string;
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ source = [
]

[tool.bumpversion]
current_version = "0.13.3"
current_version = "0.14.0"
commit = false
files = [
{ filename = "abrechnung/__init__.py" },
Expand Down

0 comments on commit 071c35f

Please sign in to comment.