From 672d63223082251b4058bb3d3e6e4a7794e0eac8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 23:08:45 +0000 Subject: [PATCH] chore: release v0.28.0 --- CHANGELOG.md | 8 ++++++++ bytes/Cargo.toml | 2 +- communication/Cargo.toml | 8 ++++---- container/Cargo.toml | 2 +- logging/Cargo.toml | 4 ++-- timely/Cargo.toml | 10 +++++----- 6 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d66145f8..90c03d8ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.28.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.27.0...timely-v0.28.0) - 2026-03-11 + +### Other + +- Partial progress on #757 ([#758](https://github.com/TimelyDataflow/timely-dataflow/pull/758)) +- Convert `Operate` to a builder trait ([#756](https://github.com/TimelyDataflow/timely-dataflow/pull/756)) +- Remove set_external_summary ([#592](https://github.com/TimelyDataflow/timely-dataflow/pull/592)) + ## [0.27.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.26.1...timely-v0.27.0) - 2026-03-03 ### Other diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index ff2c104ad..75ffa5816 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.27.0" +version = "0.28.0" authors = ["Frank McSherry "] edition.workspace = true rust-version.workspace = true diff --git a/communication/Cargo.toml b/communication/Cargo.toml index fd5593126..8c9aa1aa0 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.27.0" +version = "0.28.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -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.27" } -timely_container = { path = "../container", version = "0.27.0" } -timely_logging = { path = "../logging", version = "0.27" } +timely_bytes = { path = "../bytes", version = "0.28" } +timely_container = { path = "../container", version = "0.28.0" } +timely_logging = { path = "../logging", version = "0.28" } # Lgalloc only supports linux and macos, don't depend on any other OS. [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dev-dependencies] diff --git a/container/Cargo.toml b/container/Cargo.toml index 88c339e54..e2c636d11 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.27.0" +version = "0.28.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 1ca8f1abe..d98ada248 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.27.0" +version = "0.28.0" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true @@ -16,4 +16,4 @@ license = "MIT" workspace = true [dependencies] -timely_container = { version = "0.27.0", path = "../container" } +timely_container = { version = "0.28.0", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index f45a04b40..94b60c323 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.27.0" +version = "0.28.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -30,8 +30,8 @@ bincode = { version = "1.3" } byteorder = "1.5" itertools = "0.14.0" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.27" } -timely_logging = { path = "../logging", version = "0.27" } -timely_communication = { path = "../communication", version = "0.27", default-features = false } -timely_container = { path = "../container", version = "0.27" } +timely_bytes = { path = "../bytes", version = "0.28" } +timely_logging = { path = "../logging", version = "0.28" } +timely_communication = { path = "../communication", version = "0.28", default-features = false } +timely_container = { path = "../container", version = "0.28" } smallvec = { version = "1.15.1", features = ["serde", "const_generics"] }