From 3b1acbc53eb36485a3333a6fa3bddc3c843306be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Loipf=C3=BChrer?= Date: Sun, 11 Feb 2024 09:44:26 +0100 Subject: [PATCH] chore: release v0.13.2 --- CHANGELOG.md | 6 +++++- abrechnung/__init__.py | 2 +- debian/changelog | 6 ++++++ frontend/apps/mobile/android/app/build.gradle | 4 ++-- pyproject.toml | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb6eb39b..b0b73b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## Unreleased -[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.1...HEAD) +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.2...HEAD) + +## 0.13.1 (2024-02-11) + +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.1...v0.13.2) - fix frontend docker container startup diff --git a/abrechnung/__init__.py b/abrechnung/__init__.py index 908fdfee..fa118675 100644 --- a/abrechnung/__init__.py +++ b/abrechnung/__init__.py @@ -1,6 +1,6 @@ """Abrechnung - feature complete payment management and bookkeeping.""" -__version__ = "0.13.1" +__version__ = "0.13.2" MAJOR_VERSION = __version__.split(".")[0] MINOR_VERSION = __version__.split(".")[1] diff --git a/debian/changelog b/debian/changelog index 765e2bf1..50d2a6a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +abrechnung (0.13.2) stable; urgency=medium + + * Abrechnung release 0.13.2 + + -- Michael Loipführer Sun, 11 Feb 2024 09:42:57 +0100 + abrechnung (0.13.1) stable; urgency=medium * Abrechnung release 0.13.1 diff --git a/frontend/apps/mobile/android/app/build.gradle b/frontend/apps/mobile/android/app/build.gradle index 6b506497..b9553666 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 5 - versionName "0.13.1" + versionCode 6 + versionName "0.13.2" testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/pyproject.toml b/pyproject.toml index 0db5f5ce..3f5674c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,7 +106,7 @@ source = [ ] [tool.bumpversion] -current_version = "0.13.1" +current_version = "0.13.2" commit = false files = [ { filename = "abrechnung/__init__.py" },