diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e964893..bde5614d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.7.0 + +- Allowed `enum` and `oneof` statements to work in Protobuf message files. Thanks @yeoupooh! + ## 6.6.3 - Fixed a linting issue. Thanks @romanseo1! diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 4e964893..bde5614d 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.7.0 + +- Allowed `enum` and `oneof` statements to work in Protobuf message files. Thanks @yeoupooh! + ## 6.6.3 - Fixed a linting issue. Thanks @romanseo1! diff --git a/flutter_ffi_plugin/example/native/hub/Cargo.toml b/flutter_ffi_plugin/example/native/hub/Cargo.toml index e57f6f10..64c0d02e 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.3" +rinf = "6.7.0" prost = "0.12.3" wasm-bindgen = "0.2.91" tokio_with_wasm = "0.4.3" diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index 54806611..0f9b4898 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.3 +version: 6.7.0 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 212ba043..ea6c3e4f 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.6.3" +version = "6.7.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"