diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bac09b8..b59dc68e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.12.1 + +- Fixed linefeed problem in published files. + ## 6.12.0 - Generated message channels are now more efficient. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 62165823..400fe3dc 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.12.1 + +- Fixed linefeed problem in published files. + ## 6.12.0 - Generated message channels are now more efficient. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index a8e0c456..de173be1 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.12.0" +rinf = "6.12.1" prost = "0.12.6" # tokio = { version = "1", features = ["sync"] } wasm-bindgen = "0.2.92" # Uncomment this line to target the web diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 454a6a11..a3d989aa 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.12.0 +version: 6.12.1 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 e430db3e..c8be858e 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.12.0" +rinf = "6.12.1" prost = "0.12.6" tokio = { version = "1", features = ["sync"] } # 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 b540f59f..db8c2f9c 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.12.0" +version = "6.12.1" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"