diff --git a/CHANGELOG.md b/CHANGELOG.md index 77e75f249b..305d76077b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [14.0.2](https://github.com/johannesjo/super-productivity/compare/v14.0.1...v14.0.2) (2025-07-01) + +### Features + +- add error handling for repeatable tasks ([8825f47](https://github.com/johannesjo/super-productivity/commit/8825f4790c32e9c6cbfdc7817989d53ba50e7373)) + ## [14.0.1](https://github.com/johannesjo/super-productivity/compare/v14.0.0...v14.0.1) (2025-06-30) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index ca1de1a95b..5adfd28ad9 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 14_00_01_0000 - versionName "14.0.1" + versionCode 14_00_02_0000 + versionName "14.0.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/android/fastlane/metadata/android/en-US/changelogs/1400020000.txt b/android/fastlane/metadata/android/en-US/changelogs/1400020000.txt new file mode 100644 index 0000000000..7944773e40 --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/1400020000.txt @@ -0,0 +1,4 @@ + +### Features + +* add error handling for repeatable tasks \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 2343e62a97..7d3f03f1e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,18 +1,17 @@ { "name": "superProductivity", - "version": "14.0.1", + "version": "14.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "14.0.1", + "version": "14.0.2", "license": "MIT", "workspaces": [ "packages/*" ], "dependencies": { - "@rollup/rollup-win32-x64-msvc": "4.44.1", "electron-dl": "^3.5.2", "electron-localshortcut": "^3.2.1", "electron-log": "^5.4.1", diff --git a/package.json b/package.json index e1f22241a5..5a36ec766c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "14.0.1", + "version": "14.0.2", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index 8b3f7aefa8..f5fe839c70 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: '14.0.1', + version: '14.0.2', revision: 'NO_REV', branch: 'NO_BRANCH', };