Skip to content

Commit

Permalink
Version 6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Feb 5, 2024
1 parent 6bd4a4d commit 72af4cb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions flutter_ffi_plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/example/native/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion rust_crate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 72af4cb

Please sign in to comment.