From 617f48c2bb0bae1690edaadd3a252b79262b928d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Loipf=C3=BChrer?= Date: Wed, 3 Jan 2024 00:56:09 +0100 Subject: [PATCH] chore: release 0.12.0 --- abrechnung/__init__.py | 2 +- debian/changelog | 6 ++++++ frontend/apps/mobile/android/app/build.gradle | 4 ++-- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/abrechnung/__init__.py b/abrechnung/__init__.py index db03527c..9d080ff4 100644 --- a/abrechnung/__init__.py +++ b/abrechnung/__init__.py @@ -1,6 +1,6 @@ """Abrechnung - feature complete payment management and bookkeeping.""" -__version__ = "0.11.0" +__version__ = "0.12.0" MAJOR_VERSION = __version__.split(".")[0] MINOR_VERSION = __version__.split(".")[1] diff --git a/debian/changelog b/debian/changelog index 6caaf302..10a5b985 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +abrechnung (0.12.0) stable; urgency=medium + + * Abrechnung release 0.12.0 + + -- Michael Loipführer Wed, 3 Jan 2024 00:1:00 +0100 + abrechnung (0.11.0) stable; urgency=medium * Abrechnung release 0.11.0 diff --git a/frontend/apps/mobile/android/app/build.gradle b/frontend/apps/mobile/android/app/build.gradle index e76d3a90..ff87c3d0 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 1 - versionName "0.11.0" + versionCode 2 + versionName "0.12.0" testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/pyproject.toml b/pyproject.toml index 55db19d7..efc582a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ source = [ ] [tool.bumpversion] -current_version = "0.11.0" +current_version = "0.12.0" commit = false files = [ { filename = "abrechnung/__init__.py" },