From 310e227ee7be84ffe2b60761079b44c17850a250 Mon Sep 17 00:00:00 2001 From: DongHyun Kim Date: Fri, 2 Feb 2024 03:13:56 +0900 Subject: [PATCH] Version 6.3.1 --- 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 76f0b0be..af326db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.3.1 + +- Fixed a small glitch with codegen. + ## 6.3.0 - The interface code has been organized. Now the `bridge` Rust module is gone and the API makes more sense. Please refer to the example code to upgrade. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 76f0b0be..af326db2 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.3.1 + +- Fixed a small glitch with codegen. + ## 6.3.0 - The interface code has been organized. Now the `bridge` Rust module is gone and the API makes more sense. Please refer to the example code to upgrade. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index ab60dab4..d77224fb 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.3.0" +rinf = "6.3.1" prost = "0.12.3" wasm-bindgen = "0.2.90" tokio_with_wasm = "0.4.0" diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 4e84183c..cffb3f6a 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.3.0 +version: 6.3.1 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 24d19755..de98289d 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.3.0" +version = "6.3.1" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"