From 3dcd5c9b11cd4ff82eb1f50ce27627239a570595 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Sat, 19 Oct 2024 00:39:20 +0900 Subject: [PATCH] Version 7.0.3 --- CHANGELOG.md | 4 ++++ flutter_package/CHANGELOG.md | 4 ++++ flutter_package/example/native/hub/Cargo.toml | 2 +- flutter_package/pubspec.yaml | 2 +- flutter_package/template/native/hub/Cargo.toml | 2 +- rust_crate/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 4 deletions(-) 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"