From bddecbe2bc6393ea7ceb4e627fe7c772da865b1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 16:48:00 +0000 Subject: [PATCH] chore: prepare release 1.22.3 --- .changeset/add-firebase-fcm-config.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 18 +++++++++++++----- 5 files changed, 21 insertions(+), 12 deletions(-) delete mode 100644 .changeset/add-firebase-fcm-config.md diff --git a/.changeset/add-firebase-fcm-config.md b/.changeset/add-firebase-fcm-config.md deleted file mode 100644 index 51218e5be0..0000000000 --- a/.changeset/add-firebase-fcm-config.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Enable native FCM push on Android by adding the Firebase app config. diff --git a/CHANGELOG.md b/CHANGELOG.md index e97b2447fb..4b5c45ee8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Sable Client Changelog +## 1.22.3 (2026-09-18) + +### Fixes + +* Enable native FCM push on Android by adding the Firebase app config. by @eleboucher in #2110 + ## 1.22.1 (2026-09-18) ### Fixes diff --git a/package.json b/package.json index 327ce8b6de..0711a77e79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sable", - "version": "1.22.1", + "version": "1.22.3", "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 3453b022fc..b54fd93f4c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sable" -version = "1.22.1" +version = "1.22.3" 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 67cce3c410..1e357843c8 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.1", + "version": "1.22.3", "identifier": "moe.sable.client", "build": { "frontendDist": "../dist", @@ -64,7 +64,9 @@ }, "plugins": { "updater": { - "endpoints": ["https://github.com/SableClient/Sable/releases/latest/download/latest.json"], + "endpoints": [ + "https://github.com/SableClient/Sable/releases/latest/download/latest.json" + ], "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEM0NDc2QkI0NjdCODlEQUUKUldTdW5iaG50R3RIeFBQeGFwcDZNcGhCQ2Y4UFgzVnptRmNRZjRoVDl0MkdOZmREdC9pTUZrZnAK" }, "typegen": { @@ -78,11 +80,17 @@ }, "deep-link": { "desktop": { - "schemes": ["sable", "moe.sable.app"] + "schemes": [ + "sable", + "moe.sable.app" + ] }, "mobile": [ { - "scheme": ["sable", "moe.sable.app"], + "scheme": [ + "sable", + "moe.sable.app" + ], "appLink": false } ] @@ -104,4 +112,4 @@ ] } } -} +} \ No newline at end of file