From 72af4cb0817ed8bebf27fcc0e1784bbc2aea3085 Mon Sep 17 00:00:00 2001 From: Kim Dong-Hyun Date: Mon, 5 Feb 2024 17:21:52 +0900 Subject: [PATCH] Version 6.5.0 --- CHANGELOG.md | 5 +++++ flutter_ffi_plugin/CHANGELOG.md | 5 +++++ flutter_ffi_plugin/example/native/hub/Cargo.toml | 2 +- flutter_ffi_plugin/pubspec.yaml | 2 +- rust_crate/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93c873ac..35f25e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.5.0 + +- Now native library are loaded as dynamic library, not static library, on iOS and macOS, like other platforms. This reduces the possibility of potential conflicts of native symbols. +- Now `rinf template` checks `pubspec.yaml` instead of `lib/main.dart` to ensure that the current folder is a Flutter project. + ## 6.4.0 - The start and stop mechanism of Rust has become more stable. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 93c873ac..35f25e90 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.5.0 + +- Now native library are loaded as dynamic library, not static library, on iOS and macOS, like other platforms. This reduces the possibility of potential conflicts of native symbols. +- Now `rinf template` checks `pubspec.yaml` instead of `lib/main.dart` to ensure that the current folder is a Flutter project. + ## 6.4.0 - The start and stop mechanism of Rust has become more stable. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index 235558fc..3b0167b6 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.4.0" +rinf = "6.5.0" 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 f31eddcd..a5e46304 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.4.0 +version: 6.5.0 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 5fe1c2a3..3edc1fc1 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.4.0" +version = "6.5.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"