Skip to content

Commit

Permalink
Version 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Sep 21, 2024
1 parent 6be91be commit 5de7e2f
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 7.0.0

- To migrate from Rinf version 6, please refer to [this section](https://rinf.cunarist.com/upgrading/) in the documentation.
- Rinf no longer relies on `tokio`. While it is provided by default in the template, you can now choose whichever async runtime you prefer.
- The CLI output is now more compact and includes animations.
- The full `flutter run` command with the necessary arguments can now be obtained by running `rinf server`.
- It is now recommended to import compiled message classes and structs from the root messages module.
- Memory copying for messages sent from Dart to Rust has been reduced. This was achieved using Dart's FFI feature called 'leaf calls.'

## 7.0.0-beta

- This is a beta version.
Expand Down
9 changes: 9 additions & 0 deletions flutter_package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 7.0.0

- To migrate from Rinf version 6, please refer to [this section](https://rinf.cunarist.com/upgrading/) in the documentation.
- Rinf no longer relies on `tokio`. While it is provided by default in the template, you can now choose whichever async runtime you prefer.
- The CLI output is now more compact and includes animations.
- The full `flutter run` command with the necessary arguments can now be obtained by running `rinf server`.
- It is now recommended to import compiled message classes and structs from the root messages module.
- Memory copying for messages sent from Dart to Rust has been reduced. This was achieved using Dart's FFI feature called 'leaf calls.'

## 7.0.0-beta

- This is a beta version.
Expand Down
2 changes: 1 addition & 1 deletion flutter_package/example/native/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
crate-type = ["lib", "cdylib", "staticlib"]

[dependencies]
rinf = "7.0.0-beta"
rinf = "7.0.0"
prost = "0.13.0"
tokio = { version = "1", features = ["rt", "sync", "time", "macros"] }
tokio_with_wasm = { version = "0.7.1", features = [
Expand Down
2 changes: 1 addition & 1 deletion flutter_package/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rinf
description: Rust for native business logic, Flutter for flexible and beautiful GUI
version: 7.0.0-beta
version: 7.0.0
repository: https://github.com/cunarist/rinf

environment:
Expand Down
2 changes: 1 addition & 1 deletion flutter_package/template/native/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
crate-type = ["lib", "cdylib", "staticlib"]

[dependencies]
rinf = "7.0.0-beta"
rinf = "7.0.0"
prost = "0.13.0"
tokio = { version = "1", features = ["rt", "macros"] }

Expand Down
2 changes: 1 addition & 1 deletion rust_crate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinf"
version = "7.0.0-beta"
version = "7.0.0"
edition = "2021"
license = "MIT"
description = "Rust for native business logic, Flutter for flexible and beautiful GUI"
Expand Down

0 comments on commit 5de7e2f

Please sign in to comment.