diff --git a/CHANGELOG.md b/CHANGELOG.md index 093e02ee6..86f64cef9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.28.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.28.0...timely-v0.28.1) - 2026-04-03 + +### Other + +- Arc based event iterator ([#772](https://github.com/TimelyDataflow/timely-dataflow/pull/772)) + ## [0.28.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.27.0...timely-v0.28.0) - 2026-03-25 ### Added diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index 75ffa5816..03b4c3a76 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.28.0" +version = "0.28.1" authors = ["Frank McSherry "] edition.workspace = true rust-version.workspace = true diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 8c9aa1aa0..7411570cc 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.28.0" +version = "0.28.1" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -26,7 +26,7 @@ getopts = { version = "0.2.24", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.28" } -timely_container = { path = "../container", version = "0.28.0" } +timely_container = { path = "../container", version = "0.28.1" } timely_logging = { path = "../logging", version = "0.28" } # Lgalloc only supports linux and macos, don't depend on any other OS. diff --git a/container/Cargo.toml b/container/Cargo.toml index e2c636d11..98d144300 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.28.0" +version = "0.28.1" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index d98ada248..3d5b82e9e 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.28.0" +version = "0.28.1" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true @@ -16,4 +16,4 @@ license = "MIT" workspace = true [dependencies] -timely_container = { version = "0.28.0", path = "../container" } +timely_container = { version = "0.28.1", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 94b60c323..8c3a4350a 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.28.0" +version = "0.28.1" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true