Skip to content
Open
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.30.0](https://github.com/SINHASantos/timely-dataflow/compare/timely-v0.29.0...timely-v0.30.0) - 2026-05-29

### Other

- Correct soundness hole, add Sync bound ([#800](https://github.com/SINHASantos/timely-dataflow/pull/800))
- Move ToStreamBuilder's container builder to method generic ([#792](https://github.com/SINHASantos/timely-dataflow/pull/792))
- hoist rebuild check out of update_iter ([#797](https://github.com/SINHASantos/timely-dataflow/pull/797))
- Benchmark spill machinery ([#791](https://github.com/SINHASantos/timely-dataflow/pull/791))

### Breaking changes

- `ToStreamBuilder` exposes the item type via the `Item` associated type instead of a trait-level generic, and the container builder moves to a method-level generic. This enables method-call syntax: `(0..3).to_stream_with_builder::<_, CapacityContainerBuilder<_>>(scope)` instead of the UFCS form `ToStreamBuilder::<CapacityContainerBuilder<_>>::to_stream_with_builder(0..3, scope)`.
Expand Down
2 changes: 1 addition & 1 deletion bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_bytes"
version = "0.29.0"
version = "0.30.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions communication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_communication"
version = "0.29.0"
version = "0.30.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
description = "Communication layer for timely dataflow"
edition.workspace = true
Expand All @@ -25,9 +25,9 @@ columnar = { workspace = true }
getopts = { version = "0.2.24", optional = true }
byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.29" }
timely_container = { path = "../container", version = "0.29.0" }
timely_logging = { path = "../logging", version = "0.29" }
timely_bytes = { path = "../bytes", version = "0.30" }
timely_container = { path = "../container", version = "0.30.0" }
timely_logging = { path = "../logging", version = "0.30" }

[dev-dependencies]
tempfile = "3"
Expand Down
2 changes: 1 addition & 1 deletion container/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_container"
version = "0.29.0"
version = "0.30.0"
description = "Container abstractions for Timely"
license = "MIT"
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_logging"
version = "0.29.0"
version = "0.30.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
description = "Common timely logging infrastructure"
edition.workspace = true
Expand All @@ -16,4 +16,4 @@ license = "MIT"
workspace = true

[dependencies]
timely_container = { version = "0.29.0", path = "../container" }
timely_container = { version = "0.30.0", path = "../container" }
10 changes: 5 additions & 5 deletions timely/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "timely"
version = "0.29.0"
version = "0.30.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
readme = "../README.md"
edition.workspace = true
Expand Down Expand Up @@ -30,10 +30,10 @@ bincode = { version = "1.3" }
byteorder = "1.5"
itertools = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.29" }
timely_logging = { path = "../logging", version = "0.29" }
timely_communication = { path = "../communication", version = "0.29", default-features = false }
timely_container = { path = "../container", version = "0.29" }
timely_bytes = { path = "../bytes", version = "0.30" }
timely_logging = { path = "../logging", version = "0.30" }
timely_communication = { path = "../communication", version = "0.30", default-features = false }
timely_container = { path = "../container", version = "0.30" }
smallvec = { version = "1.15.1", features = ["serde", "const_generics"] }

[dev-dependencies]
Expand Down