Skip to content

Commit d619f2e

Browse files
committed
v0.9.0
1 parent a703998 commit d619f2e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fmodel-rust"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
description = "Accelerate development of compositional, safe, and ergonomic applications/information systems by effectively implementing Event Sourcing and CQRS patterns in Rust."
66
license = "Apache-2.0"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ Concurrency and async programming do not require a multi-threaded environment. Y
448448

449449
```toml
450450
[dependencies]
451-
fmodel-rust = { version = "0.8.2" }
451+
fmodel-rust = { version = "0.9.0" }
452452
```
453453

454454
If you don’t enable the feature, the **default** mode requires `Send` so your futures can safely hop between threads:
@@ -527,7 +527,7 @@ async fn es_test() {
527527

528528
```toml
529529
[dependencies]
530-
fmodel-rust = { version = "0.8.2", features = ["not-send-futures"] }
530+
fmodel-rust = { version = "0.9.0", features = ["not-send-futures"] }
531531
```
532532

533533
This mode removes the `Send` bound from async traits.
@@ -617,7 +617,7 @@ cargo add fmodel-rust
617617
Or add the following line to your `Cargo.toml` file:
618618

619619
```toml
620-
fmodel-rust = "0.8.2"
620+
fmodel-rust = "0.9.0"
621621
```
622622

623623
## Examples

0 commit comments

Comments
 (0)