diff --git a/CHANGELOG.md b/CHANGELOG.md index f6de0e9b..22ec9b26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 6.6.1 + +- Added support for some Linux distributions where patching Flutter SDK is not possible. +- Fixed a problem with the web sector not working. To use this new version, it's recommended to discard all Git changes in Flutter SDK's directory, or simply run `flutter upgrade --force`. +- Fixed a problem with `cd` error on Windows. Thanks @H2Sxxa! +- Fixed `pub.dev` package score. + ## 6.6.0 - Now early Rust signals on startup works properly, even if the widgets are not built yet. `rustSignalStream` will remember Rust signals that were received before widgets were built, and give them to the first listener. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index f6de0e9b..22ec9b26 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,10 @@ +## 6.6.1 + +- Added support for some Linux distributions where patching Flutter SDK is not possible. +- Fixed a problem with the web sector not working. To use this new version, it's recommended to discard all Git changes in Flutter SDK's directory, or simply run `flutter upgrade --force`. +- Fixed a problem with `cd` error on Windows. Thanks @H2Sxxa! +- Fixed `pub.dev` package score. + ## 6.6.0 - Now early Rust signals on startup works properly, even if the widgets are not built yet. `rustSignalStream` will remember Rust signals that were received before widgets were built, and give them to the first listener. diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index 7425b737..b54ff3be 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.6.0" +rinf = "6.6.1" prost = "0.12.3" wasm-bindgen = "0.2.91" tokio_with_wasm = "0.4.1" diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index ae6fed94..fdd88eba 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.6.0 +version: 6.6.1 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 05fc3550..b0705cf8 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.6.0" +version = "6.6.1" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"