diff --git a/CHANGELOG.md b/CHANGELOG.md index e50b40f7..5b8b1aff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 6.10.0 + +- Early Dart signals are now stored in the tokio channel instead of being ignored. Their performance is also slightly better. +- Excessive sample code is not included in the template from the `rinf template` command anymore. +- Now `tokio` is enabled by default in the template, not `tokio_with_wasm`. +- A configuration option, `rinf.messages.rust_serde`, was added to make generated Rust message files compatible with `serde`. Thanks @NeoVance! + ## 6.9.2 - Early Dart signals have become more stable. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 0b6c1f7f..68a6333e 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,10 @@ +## 6.10.0 + +- Early Dart signals are now stored in the tokio channel instead of being ignored. Their performance is also slightly better. +- Excessive sample code is not included in the template from the `rinf template` command anymore. +- Now `tokio` is enabled by default in the template, not `tokio_with_wasm`. +- A configuration option, `rinf.messages.rust_serde`, was added to make generated Rust message files compatible with `serde`. Thanks @NeoVance! + ## 6.9.2 - Early Dart signals have become more stable. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index d6480f56..3cff1276 100755 --- a/flutter_ffi_plugin/example/native/hub/Cargo.toml +++ b/flutter_ffi_plugin/example/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "6.9.2" +rinf = "6.10.0" prost = "0.12.3" wasm-bindgen = "0.2.92" # Uncomment this line to target the web tokio_with_wasm = "0.4.4" # Uncomment this line to target the web diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 899ec6ee..76161db9 100644 --- a/flutter_ffi_plugin/pubspec.yaml +++ b/flutter_ffi_plugin/pubspec.yaml @@ -1,6 +1,6 @@ name: rinf description: Rust for native business logic, Flutter for flexible and beautiful GUI -version: 6.9.2 +version: 6.10.0 repository: https://github.com/cunarist/rinf environment: diff --git a/flutter_ffi_plugin/template/native/hub/Cargo.toml b/flutter_ffi_plugin/template/native/hub/Cargo.toml index e69dcc35..2d1eb71e 100644 --- a/flutter_ffi_plugin/template/native/hub/Cargo.toml +++ b/flutter_ffi_plugin/template/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "6.9.2" +rinf = "6.10.0" prost = "0.12.3" tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] } # wasm-bindgen = "0.2.92" # Uncomment this line to target the web diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 8763ec01..9f1617d4 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.9.2" +version = "6.10.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"