diff --git a/CHANGELOG.md b/CHANGELOG.md index 5002cf19..2c25bf75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.1.0] - 2026-03-26 + +### Added +- In-app changelog page so you can see what's new without leaving Ditto +- Pre-release indicator in settings for those living on the edge + +### Fixed +- Changelog page no longer shows a duplicate title +- CI release pipeline uses the correct command for publishing + ## [2.0.0] - 2026-03-26 Initial release of Ditto 2.0 -- a complete rewrite of Ditto. diff --git a/android/app/build.gradle b/android/app/build.gradle index 975636f4..646857c2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -14,7 +14,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 - versionName "2.0.0" + versionName "2.1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 4865b1af..0b6ea6ac 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -303,7 +303,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.1.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = pub.ditto.app; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -325,7 +325,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.1.0; PRODUCT_BUNDLE_IDENTIFIER = pub.ditto.app; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = ""; diff --git a/package.json b/package.json index b0ca84b0..65e8e426 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mkstack", "private": true, - "version": "2.0.0", + "version": "2.1.0", "type": "module", "scripts": { "dev": "npm i --silent && vite", diff --git a/public/CHANGELOG.md b/public/CHANGELOG.md index 5002cf19..2c25bf75 100644 --- a/public/CHANGELOG.md +++ b/public/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.1.0] - 2026-03-26 + +### Added +- In-app changelog page so you can see what's new without leaving Ditto +- Pre-release indicator in settings for those living on the edge + +### Fixed +- Changelog page no longer shows a duplicate title +- CI release pipeline uses the correct command for publishing + ## [2.0.0] - 2026-03-26 Initial release of Ditto 2.0 -- a complete rewrite of Ditto.