From c8435f277a254a6ef175025f43236f2a363b6888 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Mon, 8 Jul 2024 01:55:03 +0900 Subject: [PATCH] Version 6.14.1 --- CHANGELOG.md | 5 +++++ flutter_ffi_plugin/CHANGELOG.md | 5 +++++ 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, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11e03af0..8ffa4602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.14.1 + +- The return type of Rust's `main` function can now be anything. +- Fixed the issue causing the app to hang on the splash screen after closing it with the back button on Android. + ## 6.14.0 - New feature `bevy` for treating Dart signals as Bevy events was added. Thanks @Deep-co-de! diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 66b35414..5969b742 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.14.1 + +- The return type of Rust's `main` function can now be anything. +- Fixed the issue causing the app to hang on the splash screen after closing it with the back button on Android. + ## 6.14.0 - New feature `bevy` for treating Dart signals as Bevy events was added. Thanks @Deep-co-de! diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index ab77f34f..3f848f38 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.14.0" +rinf = "6.14.1" prost = "0.12.6" 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 32be643f..193cb425 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.0 +version: 6.14.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 a70d16b9..6220504a 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.0" +rinf = "6.14.1" prost = "0.12.6" tokio = { version = "1", features = ["sync", "rt"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 94391948..1abdaf45 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.14.0" +version = "6.14.1" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"