From 541dff7f7ff2902d180efc5f305bad530699cd14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Loipf=C3=BChrer?= Date: Sun, 4 Feb 2024 11:21:19 +0100 Subject: [PATCH] chore: release v0.13.0 --- CHANGELOG.md | 6 +++++- abrechnung/__init__.py | 2 +- debian/changelog | 6 ++++++ frontend/apps/mobile/android/app/build.gradle | 4 ++-- frontend/libs/api/src/lib/api.ts | 4 ++-- pyproject.toml | 2 +- 6 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f968c8d..49440b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## Unreleased -[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.12.1...HEAD) +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.0...HEAD) + +## 0.12.1 (2024-02-04) + +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.12.1...v0.13.0) - Add CSV exports for transactions in web by @ymeiron - Add german translations diff --git a/abrechnung/__init__.py b/abrechnung/__init__.py index dcdfe0f..bb4f39a 100644 --- a/abrechnung/__init__.py +++ b/abrechnung/__init__.py @@ -1,6 +1,6 @@ """Abrechnung - feature complete payment management and bookkeeping.""" -__version__ = "0.12.1" +__version__ = "0.13.0" MAJOR_VERSION = __version__.split(".")[0] MINOR_VERSION = __version__.split(".")[1] diff --git a/debian/changelog b/debian/changelog index 1031f1e..d67a33e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +abrechnung (0.13.0) stable; urgency=medium + + * Abrechnung release 0.13.0 + + -- Michael Loipführer Sun, 4 Feb 2024 11:19:30 +0100 + abrechnung (0.12.1) stable; urgency=medium * Abrechnung release 0.12.1 diff --git a/frontend/apps/mobile/android/app/build.gradle b/frontend/apps/mobile/android/app/build.gradle index 42c5b7d..9f82f15 100644 --- a/frontend/apps/mobile/android/app/build.gradle +++ b/frontend/apps/mobile/android/app/build.gradle @@ -79,8 +79,8 @@ android { applicationId "lol.sft.abrechnung" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 3 - versionName "0.12.1" + versionCode 4 + versionName "0.13.0" testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/frontend/libs/api/src/lib/api.ts b/frontend/libs/api/src/lib/api.ts index 83dd03d..2aea08f 100644 --- a/frontend/libs/api/src/lib/api.ts +++ b/frontend/libs/api/src/lib/api.ts @@ -10,8 +10,8 @@ export class HttpError implements IHttpError { } // accepted version range of the backend api, [min, max) -export const MIN_BACKEND_VERSION = "0.12.0"; -export const MAX_BACKEND_VERSION = "0.13.0"; +export const MIN_BACKEND_VERSION = "0.13.0"; +export const MAX_BACKEND_VERSION = "0.14.0"; export class Api { private baseApiUrl: string; diff --git a/pyproject.toml b/pyproject.toml index 683b5d6..2b8189a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,7 +106,7 @@ source = [ ] [tool.bumpversion] -current_version = "0.12.1" +current_version = "0.13.0" commit = false files = [ { filename = "abrechnung/__init__.py" },