diff --git a/.changeset/polyfill-change-array-by-copy.md b/.changeset/polyfill-change-array-by-copy.md deleted file mode 100644 index 7ba827c45a..0000000000 --- a/.changeset/polyfill-change-array-by-copy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Fix a crash on older WebViews that lack `toSorted`, `toReversed`, and `with`. diff --git a/.changeset/shrink-foss-android-apk.md b/.changeset/shrink-foss-android-apk.md deleted file mode 100644 index f8d8a5b24b..0000000000 --- a/.changeset/shrink-foss-android-apk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Shrink the Android APK: strip the native library, drop bundled source maps, and split the F-Droid build per ABI. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3904dc2bec..151de620de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Sable Client Changelog +## 1.22.5 (2026-09-20) + +### Fixes + +* Fix a crash on older WebViews that lack `toSorted`, `toReversed`, and `with`. by @eleboucher in #2122 +* Shrink the Android APK: strip the native library, drop bundled source maps, and split the F-Droid build per ABI. by @eleboucher in #2122 + ## 1.22.4 (2026-09-18) ### Fixes diff --git a/package.json b/package.json index 6b13fbd33d..d8a23a79a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sable", - "version": "1.22.4", + "version": "1.22.5", "description": "An almost stable Matrix client", "keywords": [], "license": "AGPL-3.0-only", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 48dbff9b44..91c7c53b8c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sable" -version = "1.22.4" +version = "1.22.5" description = "Yet another matrix client but better" authors = ["Sable Maintainers"] license = "AGPL-3.0-or-later" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9b2c587726..049aaa895c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Sable", - "version": "1.22.4", + "version": "1.22.5", "identifier": "moe.sable.client", "build": { "frontendDist": "../dist",