diff --git a/CHANGELOG.md b/CHANGELOG.md index ef45ab21d..6607926fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# [2.37.13] - 2024-10-04 +- [Android] Make `RichTextEditorStyle` and other data classes' constructors public to match their `copy` methods in Kotlin 2.0. This would cause build errors on Kotlin 2.1. + # [2.37.12] - 2024-10-02 - [Common] Dependencies update diff --git a/Cargo.lock b/Cargo.lock index 14d82bbf8..cc983ef39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1391,7 +1391,7 @@ dependencies = [ [[package]] name = "uniffi-wysiwyg-composer" -version = "2.37.12" +version = "2.37.13" dependencies = [ "html-escape", "matrix_mentions", @@ -1852,7 +1852,7 @@ dependencies = [ [[package]] name = "wysiwyg" -version = "2.37.12" +version = "2.37.13" dependencies = [ "cfg-if", "email_address", @@ -1876,7 +1876,7 @@ dependencies = [ [[package]] name = "wysiwyg-wasm" -version = "2.37.12" +version = "2.37.13" dependencies = [ "console_error_panic_hook", "html-escape", diff --git a/bindings/wysiwyg-ffi/Cargo.toml b/bindings/wysiwyg-ffi/Cargo.toml index 17e327729..48ccbcc77 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 = "AGPL-3.0" name = "uniffi-wysiwyg-composer" -version = "2.37.12" +version = "2.37.13" rust-version = { workspace = true } [features] diff --git a/bindings/wysiwyg-wasm/Cargo.toml b/bindings/wysiwyg-wasm/Cargo.toml index 5b85793c7..1261376c8 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 = "AGPL-3.0" name = "wysiwyg-wasm" -version = "2.37.12" +version = "2.37.13" 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 a413cf090..49651573d 100644 --- a/bindings/wysiwyg-wasm/package-lock.json +++ b/bindings/wysiwyg-wasm/package-lock.json @@ -1,12 +1,12 @@ { "name": "wysiwyg-wasm", - "version": "2.37.12", + "version": "2.37.13", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wysiwyg-wasm", - "version": "2.37.12", + "version": "2.37.13", "license": "AGPL-3.0", "devDependencies": { "jest": "^28.1.0", diff --git a/bindings/wysiwyg-wasm/package.json b/bindings/wysiwyg-wasm/package.json index 56c6c488f..c5aaedcdf 100644 --- a/bindings/wysiwyg-wasm/package.json +++ b/bindings/wysiwyg-wasm/package.json @@ -1,6 +1,6 @@ { "name": "wysiwyg-wasm", - "version": "2.37.12", + "version": "2.37.13", "homepage": "https://gitlab.com/andybalaam/wysiwyg-rust", "description": "WASM bindings for wysiwyg-rust", "license": "AGPL-3.0", diff --git a/crates/wysiwyg/Cargo.toml b/crates/wysiwyg/Cargo.toml index b194f5adc..b957a7eeb 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 = "AGPL-3.0" name = "wysiwyg" -version = "2.37.12" +version = "2.37.13" rust-version = { workspace = true } [features] diff --git a/platforms/android/gradle.properties b/platforms/android/gradle.properties index 211dae440..1eb8e8f00 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.37.12 +VERSION_NAME=2.37.13 POM_NAME=Matrix Rich Text Editor POM_DESCRIPTION=Cross-platform rich text editor that generates HTML output. diff --git a/platforms/web/package.json b/platforms/web/package.json index 748b72909..52478bc3f 100644 --- a/platforms/web/package.json +++ b/platforms/web/package.json @@ -1,6 +1,6 @@ { "name": "@vector-im/matrix-wysiwyg", - "version": "2.37.12", + "version": "2.37.13", "type": "module", "description": "Wysiwyg composer for Element Web using React", "author": "New Vector Ltd.",