Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# 0.7.0 (November 3, 2025)

### Added

- Add a basic cluster simulation example ([#233])
- Seed tokio with the world rng ([#245])
- Update deps ([#236], [#237], [#239], [#241])
- Add bind drop test ([#235])

[#233]: https://github.com/tokio-rs/turmoil/pull/233
[#235]: https://github.com/tokio-rs/turmoil/pull/235
[#236]: https://github.com/tokio-rs/turmoil/pull/236
[#237]: https://github.com/tokio-rs/turmoil/pull/237
[#239]: https://github.com/tokio-rs/turmoil/pull/239
[#241]: https://github.com/tokio-rs/turmoil/pull/241
[#245]: https://github.com/tokio-rs/turmoil/pull/245

### Fixed

- Fix clippy lint violations ([#242], [#244])
- Remove prost from build-dependencies ([#238])

[#238]: https://github.com/tokio-rs/turmoil/pull/238
[#242]: https://github.com/tokio-rs/turmoil/pull/242
[#244]: https://github.com/tokio-rs/turmoil/pull/244

### Breaking

- Change `Builder` to accept an rng seed ([#246])

[#246]: https://github.com/tokio-rs/turmoil/pull/246

# 0.6.6 (March 10, 2025)

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "turmoil"
# - README.md
# - Update CHANGELOG.md
# - Create git tag
version = "0.6.6"
version = "0.7.0"
edition = "2021"
license = "MIT"
authors = ["Tokio Contributors <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add this to your `Cargo.toml`.

```toml
[dev-dependencies]
turmoil = "0.6"
turmoil = "0.7"
```

See crate documentation for simulation setup instructions.
Expand Down
Loading