From f5479c06bfb4bf753f74cd7eb21272e549d98c17 Mon Sep 17 00:00:00 2001 From: DongHyun Kim Date: Tue, 30 Jan 2024 23:56:59 +0900 Subject: [PATCH] Version 6.2.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 13e8442e..13cee1ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.2.0 + +- Now custom installation of `protoc` works. This is useful when you don't have full access to GitHub APIs, which is needed for automatic `protoc` installation. Thanks @TENX-S! +- Signal handling has become more efficient. + ## 6.1.0 - Now `rustSignalStream`s `listen` can be called multiple times. Thanks @rabbitson87! diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 13e8442e..13cee1ea 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.2.0 + +- Now custom installation of `protoc` works. This is useful when you don't have full access to GitHub APIs, which is needed for automatic `protoc` installation. Thanks @TENX-S! +- Signal handling has become more efficient. + ## 6.1.0 - Now `rustSignalStream`s `listen` can be called multiple times. Thanks @rabbitson87! diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index 49c2a2b9..337fb352 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.1.0" +rinf = "6.2.0" allo-isolate = "0.1.24" wasm-bindgen = "0.2.90" prost = "0.12.3" diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 2a3eed6c..2088e24c 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.1.0 +version: 6.2.0 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 62d60e13..188f5d4f 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.1.0" +version = "6.2.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"