diff --git a/CHANGELOG.md b/CHANGELOG.md index 184a3fc0..e35c69b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,21 +2,25 @@ ## Unreleased -[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.2...HEAD) +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.3...HEAD) + +## 0.13.3 (2024-03-02) + +[Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.2...v0.13.3) - web: add button to add a new purchase for an account from the account detail page -## 0.13.1 (2024-02-11) +## 0.13.2 (2024-02-11) [Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.1...v0.13.2) - fix frontend docker container startup -## 0.13.0 (2024-02-04) +## 0.13.1 (2024-02-04) [Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.13.0...v0.13.1) -## 0.12.1 (2024-02-04) +## 0.13.0 (2024-02-04) [Compare the full difference.](https://github.com/SFTtech/abrechnung/compare/v0.12.1...v0.13.0) diff --git a/abrechnung/__init__.py b/abrechnung/__init__.py index fa118675..6a49cbe1 100644 --- a/abrechnung/__init__.py +++ b/abrechnung/__init__.py @@ -1,6 +1,6 @@ """Abrechnung - feature complete payment management and bookkeeping.""" -__version__ = "0.13.2" +__version__ = "0.13.3" MAJOR_VERSION = __version__.split(".")[0] MINOR_VERSION = __version__.split(".")[1] diff --git a/debian/changelog b/debian/changelog index 50d2a6a8..958aaf72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +abrechnung (0.13.3) stable; urgency=medium + + * Abrechnung release 0.13.3 + + -- Michael Loipführer Sat, 2 Mar 2024 11:52:48 +0100 + abrechnung (0.13.2) stable; urgency=medium * Abrechnung release 0.13.2 diff --git a/frontend/apps/mobile/android/app/build.gradle b/frontend/apps/mobile/android/app/build.gradle index b9553666..bd6ac333 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 6 - versionName "0.13.2" + versionCode 7 + versionName "0.13.3" testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/pyproject.toml b/pyproject.toml index 03f881f2..ac6e258a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,11 +106,11 @@ source = [ ] [tool.bumpversion] -current_version = "0.13.2" +current_version = "0.13.3" commit = false files = [ { filename = "abrechnung/__init__.py" }, { filename = "frontend/apps/mobile/android/app/build.gradle" }, - { filename = "CHANGELOG.md", search = "Unreleased", replace = "{current_version} ({now:%Y-%m-%d})"}, + { filename = "CHANGELOG.md", search = "Unreleased", replace = "{new_version} ({now:%Y-%m-%d})"}, { filename = "CHANGELOG.md", search = "v{current_version}...HEAD", replace = "v{current_version}...v{new_version}"}, ]