From 12ec75a8b80077b909ab2b3cfd58ff76379c4bec Mon Sep 17 00:00:00 2001 From: Alfonso Grillo Date: Tue, 28 Nov 2023 08:49:46 +0100 Subject: [PATCH 1/2] Version 2.19.0 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 6 +++--- bindings/wysiwyg-ffi/Cargo.toml | 2 +- bindings/wysiwyg-wasm/Cargo.toml | 2 +- bindings/wysiwyg-wasm/package-lock.json | 4 ++-- bindings/wysiwyg-wasm/package.json | 2 +- crates/wysiwyg/Cargo.toml | 2 +- platforms/android/gradle.properties | 2 +- platforms/web/package.json | 2 +- 9 files changed, 23 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea10f201..bbd093b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# [2.19.0] - 2023-11-28 + +### Fixed + +- Android: fix a bug with auto capitalisation. +- Android: fix disappearing numbers with some keyboards. +- Android: fix using emojis inside composing regions. +- iOS: fix the position of the caret. + +### Changed +- Common: remove uniffi fork from dependencies + # [2.18.0] - 2023-11-17 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 006e84c98..e5da22939 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "uniffi-wysiwyg-composer" -version = "2.18.0" +version = "2.19.0" dependencies = [ "matrix_mentions", "uniffi", @@ -2020,7 +2020,7 @@ dependencies = [ [[package]] name = "wysiwyg" -version = "2.18.0" +version = "2.19.0" dependencies = [ "cfg-if", "email_address", @@ -2044,7 +2044,7 @@ dependencies = [ [[package]] name = "wysiwyg-wasm" -version = "2.18.0" +version = "2.19.0" dependencies = [ "console_error_panic_hook", "js-sys", diff --git a/bindings/wysiwyg-ffi/Cargo.toml b/bindings/wysiwyg-ffi/Cargo.toml index a931e936f..63abae91a 100644 --- a/bindings/wysiwyg-ffi/Cargo.toml +++ b/bindings/wysiwyg-ffi/Cargo.toml @@ -7,7 +7,7 @@ description = "Swift and Kotlin bindings for wysiwyg-rust" keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"] license = "Apache-2.0" name = "uniffi-wysiwyg-composer" -version = "2.18.0" +version = "2.19.0" rust-version = { workspace = true } [features] diff --git a/bindings/wysiwyg-wasm/Cargo.toml b/bindings/wysiwyg-wasm/Cargo.toml index 2f5dde87d..7b037c39b 100644 --- a/bindings/wysiwyg-wasm/Cargo.toml +++ b/bindings/wysiwyg-wasm/Cargo.toml @@ -7,7 +7,7 @@ description = "WASM bindings for wysiwyg-rust" keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"] license = "Apache-2.0" name = "wysiwyg-wasm" -version = "2.18.0" +version = "2.19.0" rust-version = { workspace = true } [package.metadata.wasm-pack.profile.profiling] diff --git a/bindings/wysiwyg-wasm/package-lock.json b/bindings/wysiwyg-wasm/package-lock.json index 6d04f21d2..1d7b9612d 100644 --- a/bindings/wysiwyg-wasm/package-lock.json +++ b/bindings/wysiwyg-wasm/package-lock.json @@ -1,12 +1,12 @@ { "name": "wysiwyg-wasm", - "version": "2.18.0", + "version": "2.19.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wysiwyg-wasm", - "version": "2.18.0", + "version": "2.19.0", "license": "Apache-2.0", "devDependencies": { "jest": "^28.1.0", diff --git a/bindings/wysiwyg-wasm/package.json b/bindings/wysiwyg-wasm/package.json index 37bc1aae8..a840370e1 100644 --- a/bindings/wysiwyg-wasm/package.json +++ b/bindings/wysiwyg-wasm/package.json @@ -1,6 +1,6 @@ { "name": "wysiwyg-wasm", - "version": "2.18.0", + "version": "2.19.0", "homepage": "https://gitlab.com/andybalaam/wysiwyg-rust", "description": "WASM bindings for wysiwyg-rust", "license": "Apache-2.0", diff --git a/crates/wysiwyg/Cargo.toml b/crates/wysiwyg/Cargo.toml index 7f933d45e..a6656c606 100644 --- a/crates/wysiwyg/Cargo.toml +++ b/crates/wysiwyg/Cargo.toml @@ -7,7 +7,7 @@ description = "Model code to power a rich text editor for Matrix" keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"] license = "Apache-2.0" name = "wysiwyg" -version = "2.18.0" +version = "2.19.0" rust-version = { workspace = true } [features] diff --git a/platforms/android/gradle.properties b/platforms/android/gradle.properties index 9786a190a..b28d62740 100644 --- a/platforms/android/gradle.properties +++ b/platforms/android/gradle.properties @@ -27,7 +27,7 @@ RELEASE_SIGNING_ENABLED=true GROUP=io.element.android # POM_ARTIFACT_ID is configured in each module's gradle.properties -VERSION_NAME=2.18.0 +VERSION_NAME=2.19.0 POM_NAME=Matrix WYSIWYG POM_DESCRIPTION=Cross-platform rich text editor that generates HTML output. diff --git a/platforms/web/package.json b/platforms/web/package.json index fb9d632a1..c9815079a 100644 --- a/platforms/web/package.json +++ b/platforms/web/package.json @@ -1,6 +1,6 @@ { "name": "@matrix-org/matrix-wysiwyg", - "version": "2.18.0", + "version": "2.19.0", "type": "module", "description": "Wysiwyg composer for matrix.org using React", "author": "matrix.org", From e665260919522cb06fd61415915e22f82babdc68 Mon Sep 17 00:00:00 2001 From: Nicolas Mauri Date: Tue, 28 Nov 2023 10:42:53 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: jonnyandrew --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbd093b72..b08ef5ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Android: fix disappearing numbers with some keyboards. - Android: fix using emojis inside composing regions. - iOS: fix the position of the caret. +- iOS: fix double space to full stop conversion shortcut ### Changed - Common: remove uniffi fork from dependencies