Skip to content

Commit

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

- You need to run `rinf template`, `cargo install rinf` again to use this new version.
- Now the communication between Dart and Rust is much simpler. You can mark messages in `.proto` files so that Rinf's code generator can generate channels in-between. This new system is not compatible with older Rinf versions, so please check the docs before you upgrade.
- Added the ability to customize Rinf's behaviors by writing fields inside `pubspec.yaml` file. Thanks @thlorenz!
- Allowed users to check when the documentation page was made and edited. Thanks @VictorieeMan!
- Now it's possible to quit `rinf message --watch` by pressing `q` on your keyboard.
- Internal code has been organized.

## 6.0.0-beta

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

- You need to run `rinf template`, `cargo install rinf` again to use this new version.
- Now the communication between Dart and Rust is much simpler. You can mark messages in `.proto` files so that Rinf's code generator can generate channels in-between. This new system is not compatible with older Rinf versions, so please check the docs before you upgrade.
- Added the ability to customize Rinf's behaviors by writing fields inside `pubspec.yaml` file. Thanks @thlorenz!
- Allowed users to check when the documentation page was made and edited. Thanks @VictorieeMan!
- Now it's possible to quit `rinf message --watch` by pressing `q` on your keyboard.
- Internal code has been organized.

## 6.0.0-beta

- This is a beta version.
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/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 = "6.0.0-beta"
rinf = "6.0.0"
allo-isolate = "0.1.24"
wasm-bindgen = "0.2.90"
prost = "0.12.3"
Expand Down
2 changes: 1 addition & 1 deletion flutter_ffi_plugin/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: 6.0.0-beta
version: 6.0.0
repository: https://github.com/cunarist/rinf

environment:
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 = "6.0.0-beta"
version = "6.0.0"
edition = "2021"
license = "MIT"
description = "Rust for native business logic, Flutter for flexible and beautiful GUI"
Expand Down

0 comments on commit f5697cb

Please sign in to comment.