diff --git a/CHANGELOG.md b/CHANGELOG.md index 5393670a..f6a037dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.0-alpha + +- This is an alpha version. + ## 6.15.0 - Now it's possible to add attributes to generated message structs in Rust. Thanks @H2Sxxa! diff --git a/flutter_package/CHANGELOG.md b/flutter_package/CHANGELOG.md index 7b2cfc5e..ea978128 100644 --- a/flutter_package/CHANGELOG.md +++ b/flutter_package/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.0-alpha + +- This is an alpha version. + ## 6.15.0 - Now it's possible to add attributes to generated message structs in Rust. Thanks @H2Sxxa! diff --git a/flutter_package/example/native/hub/Cargo.toml b/flutter_package/example/native/hub/Cargo.toml index 65e0464b..79c0cef9 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 = "6.15.0" +rinf = "7.0.0-alpha" 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 cbc9ade8..ff7b50be 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: 6.15.0 +version: 7.0.0-alpha 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 2e66bc63..46641b9e 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 = "6.15.0" +rinf = "7.0.0-alpha" prost = "0.13.0" tokio = { version = "1", features = ["rt", "macros"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index 588afcb2..984cba8e 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "6.15.0" +version = "7.0.0-alpha" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"