From c1ecbe6dd903853373f9e7e6f3bf23a3a28ed0be Mon Sep 17 00:00:00 2001 From: DongHyun Kim Date: Mon, 15 Jan 2024 15:44:52 +0900 Subject: [PATCH] Version 5.4.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 +- rust_crate/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aca6181..8043817f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.4.0 + +- Now users do not have to manually install `protoc` binary executable anymore. Protobuf compiler is now automatically installed. Note that you need to run `cargo install rinf` again to use this new version. + ## 5.3.1 - Fixed a bug with `rinf message` that omits `mod.rs` inside a folder without any message. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 5aca6181..8043817f 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.4.0 + +- Now users do not have to manually install `protoc` binary executable anymore. Protobuf compiler is now automatically installed. Note that you need to run `cargo install rinf` again to use this new version. + ## 5.3.1 - Fixed a bug with `rinf message` that omits `mod.rs` inside a folder without any message. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index e392003e..cd1bee84 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 = "5.3.1" +rinf = "5.4.0" allo-isolate = { version = "0.1.23", features = ["zero-copy"] } wasm-bindgen = "0.2.89" tokio_with_wasm = "0.4.0" diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 8cb91b0c..e2304ad7 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: 5.3.1 +version: 5.4.0 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index dff827ba..af488f2f 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "5.3.1" +version = "5.4.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"