diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c95cc1..4bb68266 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.4 + +- Upgraded `allo-isolate` to fix crashes on Android. + ## 7.0.3 - Fixed a problem where generated Rust message structs were unable to import other messages. diff --git a/flutter_package/CHANGELOG.md b/flutter_package/CHANGELOG.md index a0c95cc1..4bb68266 100644 --- a/flutter_package/CHANGELOG.md +++ b/flutter_package/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.4 + +- Upgraded `allo-isolate` to fix crashes on Android. + ## 7.0.3 - Fixed a problem where generated Rust message structs were unable to import other messages. diff --git a/flutter_package/example/native/hub/Cargo.toml b/flutter_package/example/native/hub/Cargo.toml index d657225a..c99cdbba 100644 --- a/flutter_package/example/native/hub/Cargo.toml +++ b/flutter_package/example/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "7.0.3" +rinf = "7.0.4" prost = "0.13.0" tokio = { version = "1", features = ["rt", "sync", "time", "macros"] } tokio_with_wasm = { version = "0.7.1", features = [ diff --git a/flutter_package/pubspec.yaml b/flutter_package/pubspec.yaml index 8b50cd34..2388295d 100644 --- a/flutter_package/pubspec.yaml +++ b/flutter_package/pubspec.yaml @@ -1,6 +1,6 @@ name: rinf description: Rust for native business logic, Flutter for flexible and beautiful GUI -version: 7.0.3 +version: 7.0.4 repository: https://github.com/cunarist/rinf environment: diff --git a/flutter_package/template/native/hub/Cargo.toml b/flutter_package/template/native/hub/Cargo.toml index d1f0dd84..8d06899e 100644 --- a/flutter_package/template/native/hub/Cargo.toml +++ b/flutter_package/template/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "7.0.3" +rinf = "7.0.4" prost = "0.13.0" tokio = { version = "1", features = ["rt", "macros"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index bd941570..c4df9b1f 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "7.0.3" +version = "7.0.4" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"