diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1317f48..7ead18570 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.26.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.25.1...timely-v0.26.0) - 2025-10-28 + +### Other + +- Remove push counter's give ([#723](https://github.com/TimelyDataflow/timely-dataflow/pull/723)) + ## [0.25.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.25.0...timely-v0.25.1) - 2025-10-28 This release fixes an issue with corrupted progress traffic when using the push counter's `give` function. diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index 1c517ab59..298f55789 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.25.1" +version = "0.26.0" authors = ["Frank McSherry "] edition = "2018" diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 930277edf..e46bf0486 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.25.1" +version = "0.26.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -24,9 +24,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.25" } -timely_container = { path = "../container", version = "0.25.1" } -timely_logging = { path = "../logging", version = "0.25" } +timely_bytes = { path = "../bytes", version = "0.26" } +timely_container = { path = "../container", version = "0.26.0" } +timely_logging = { path = "../logging", version = "0.26" } # 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 4cc72ef01..093443716 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.25.1" +version = "0.26.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index a8c7b7264..d8d47a887 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.25.1" +version = "0.26.0" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true @@ -15,4 +15,4 @@ license = "MIT" workspace = true [dependencies] -timely_container = { version = "0.25.1", path = "../container" } +timely_container = { version = "0.26.0", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index af0acfce9..f9bacc22f 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.25.1" +version = "0.26.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -29,10 +29,10 @@ bincode = { version = "1.3" } byteorder = "1.5" itertools = "0.14.0" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.25" } -timely_logging = { path = "../logging", version = "0.25" } -timely_communication = { path = "../communication", version = "0.25", default-features = false } -timely_container = { path = "../container", version = "0.25" } +timely_bytes = { path = "../bytes", version = "0.26" } +timely_logging = { path = "../logging", version = "0.26" } +timely_communication = { path = "../communication", version = "0.26", default-features = false } +timely_container = { path = "../container", version = "0.26" } smallvec = { version = "1.15.1", features = ["serde", "const_generics"] } [dev-dependencies]