diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e1c2fb693..47f0d21e15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [12.0.3](https://github.com/johannesjo/super-productivity/compare/v12.0.2...v12.0.3) (2025-04-05) + +### Bug Fixes + +- **android:** status bar for android sdk 35 [#4205](https://github.com/johannesjo/super-productivity/issues/4205) ([0d853f2](https://github.com/johannesjo/super-productivity/commit/0d853f21e6822e3ed1326da9b095abd0e744f3d1)) + ## [12.0.2](https://github.com/johannesjo/super-productivity/compare/v12.0.1...v12.0.2) (2025-04-03) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index 9c0c2a4a51..c91df53bf1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 12_00_02_0000 - versionName "12.0.2" + versionCode 12_00_03_0000 + versionName "12.0.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/fastlane/metadata/android/en-US/changelogs/1200030000.txt b/fastlane/metadata/android/en-US/changelogs/1200030000.txt new file mode 100644 index 0000000000..2553eaf74e --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1200030000.txt @@ -0,0 +1,4 @@ + +### Bug Fixes + +* **android:** status bar for android sdk 35 #4205 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index eb64cfa2f0..01d35deae6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "12.0.2", + "version": "12.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "12.0.2", + "version": "12.0.3", "license": "MIT", "dependencies": { "electron-dl": "^3.5.2", diff --git a/package.json b/package.json index 1ecf079ca5..eafe178ae3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "12.0.2", + "version": "12.0.3", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 3d996300ea..27d67134cd 100644 --- a/src/environments/versions.ts +++ b/src/environments/versions.ts @@ -1,6 +1,6 @@ // this file is automatically generated by git.version.ts script export const versions = { - version: '12.0.2', + version: '12.0.3', revision: 'NO_REV', branch: 'NO_BRANCH', };