Skip to content

Commit

Permalink
Version 6.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed May 22, 2024
1 parent df27952 commit bbec50d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 7 additions & 0 deletions flutter_ffi_plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/example/native/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/template/native/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rust_crate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit bbec50d

Please sign in to comment.