From 5070e47af8ebf302b0588fedbbbf68ffa860b606 Mon Sep 17 00:00:00 2001 From: donghyun-edit Date: Sun, 28 Jul 2024 01:10:01 +0900 Subject: [PATCH] Version 6.15.0 --- CHANGELOG.md | 4 ++++ flutter_ffi_plugin/CHANGELOG.md | 4 ++++ flutter_ffi_plugin/example/native/hub/Cargo.toml | 2 +- flutter_ffi_plugin/pubspec.yaml | 2 +- flutter_ffi_plugin/template/native/hub/Cargo.toml | 2 +- rust_crate/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10135648..5393670a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.15.0 + +- Now it's possible to add attributes to generated message structs in Rust. Thanks @H2Sxxa! + ## 6.14.2 - Now, the message channels work after reopening the app following the use of the back button on mobile devices. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 609b9dd1..7b2cfc5e 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.15.0 + +- Now it's possible to add attributes to generated message structs in Rust. Thanks @H2Sxxa! + ## 6.14.2 - Now, the message channels work after reopening the app following the use of the back button on mobile devices. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index fb25ee83..13415716 100644 --- 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.14.2" +rinf = "6.15.0" prost = "0.13.0" tokio = { version = "1", features = ["rt", "sync", "macros", "time"] } tokio_with_wasm = { version = "0.6.1", features = [ diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 8c1c1d95..0d388dba 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.14.2 +version: 6.15.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 00e02fc4..95ebfc3d 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.14.2" +rinf = "6.15.0" prost = "0.12.6" tokio = { version = "1", features = ["sync", "rt"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index a8cc0d60..6c72b1fd 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.14.2" +version = "6.15.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"