diff --git a/CHANGELOG.md b/CHANGELOG.md index acb4c1d79..ba9780d9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [13.0.1](https://github.com/johannesjo/super-productivity/compare/v13.0.0...v13.0.1) (2025-05-13) + +### Bug Fixes + +- error during migration [#4338](https://github.com/johannesjo/super-productivity/issues/4338) ([efd3440](https://github.com/johannesjo/super-productivity/commit/efd34405200c31dbf1065c3e6ab062d339b9e002)) +- validation error [#4337](https://github.com/johannesjo/super-productivity/issues/4337) ([66b3693](https://github.com/johannesjo/super-productivity/commit/66b3693edc4161db4713201f1c8a63978fcd4c83)) + +### Features + +- **pfapi:** add repair function for each model individually [#4332](https://github.com/johannesjo/super-productivity/issues/4332) ([c9ef64d](https://github.com/johannesjo/super-productivity/commit/c9ef64d0d2511c52980f0d6f719c2872829838e7)) + # [13.0.0](https://github.com/johannesjo/super-productivity/compare/v12.0.6-rc.10...v13.0.0) (2025-05-13) ### Features diff --git a/android/app/build.gradle b/android/app/build.gradle index c91397b47..0a392fc47 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 13_00_00_0000 - versionName "13.0.0" + versionCode 13_00_01_0000 + versionName "13.0.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/fastlane/metadata/android/en-US/changelogs/1300010000.txt b/fastlane/metadata/android/en-US/changelogs/1300010000.txt new file mode 100644 index 000000000..b27700929 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1300010000.txt @@ -0,0 +1,8 @@ + +### Bug Fixes + +* error during migration #4338 +* validation error #4337 +### Features + +* **pfapi:** add repair function for each model individually #4332 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 39de6d43d..8b4eca24d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "13.0.0", + "version": "13.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "13.0.0", + "version": "13.0.1", "license": "MIT", "dependencies": { "electron-dl": "^3.5.2", diff --git a/package.json b/package.json index 2aed4283c..1eb281b21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "13.0.0", + "version": "13.0.1", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index b2d7986cc..a08dc5647 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: '13.0.0', + version: '13.0.1', revision: 'NO_REV', branch: 'NO_BRANCH', };