diff --git a/CHANGELOG.md b/CHANGELOG.md index 154a3d5b..a0c95cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.3 + +- Fixed a problem where generated Rust message structs were unable to import other messages. + ## 7.0.2 - Optimized certain async APIs in the `rinf` crate for better performance. diff --git a/flutter_package/CHANGELOG.md b/flutter_package/CHANGELOG.md index 154a3d5b..a0c95cc1 100644 --- a/flutter_package/CHANGELOG.md +++ b/flutter_package/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.3 + +- Fixed a problem where generated Rust message structs were unable to import other messages. + ## 7.0.2 - Optimized certain async APIs in the `rinf` crate for better performance. diff --git a/flutter_package/example/native/hub/Cargo.toml b/flutter_package/example/native/hub/Cargo.toml index fec452db..d657225a 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.2" +rinf = "7.0.3" 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 2b7ae4da..8b50cd34 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.2 +version: 7.0.3 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 144021f8..d1f0dd84 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.2" +rinf = "7.0.3" prost = "0.13.0" tokio = { version = "1", features = ["rt", "macros"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index cfc2bf42..bdcfd4af 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "7.0.2" +version = "7.0.3" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"