diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b54b9f0c..fc3daee64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.25.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.24.0...timely-v0.25.0) - 2025-09-26 + +### Other + +- Provide access for wrapped builder ([#717](https://github.com/TimelyDataflow/timely-dataflow/pull/717)) +- Pivot container builders above capability checking ([#715](https://github.com/TimelyDataflow/timely-dataflow/pull/715)) +- Add and use `InputSession` ([#716](https://github.com/TimelyDataflow/timely-dataflow/pull/716)) +- Remove Container argument from Counter ([#714](https://github.com/TimelyDataflow/timely-dataflow/pull/714)) +- Remove Hash from Timestamp ([#713](https://github.com/TimelyDataflow/timely-dataflow/pull/713)) +- Remove IterContainer ([#707](https://github.com/TimelyDataflow/timely-dataflow/pull/707)) +- Replace ExchangeCore with DistributePact ([#711](https://github.com/TimelyDataflow/timely-dataflow/pull/711)) +- Create pact for Distributors ([#709](https://github.com/TimelyDataflow/timely-dataflow/pull/709)) + ## [0.24.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.23.0...timely-v0.24.0) - 2025-08-28 This version of Timely has some exciting new features. diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index 17f0b8254..fe305c762 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.24.0" +version = "0.25.0" authors = ["Frank McSherry "] edition = "2018" diff --git a/communication/Cargo.toml b/communication/Cargo.toml index fcd1fcaf5..0961a3c72 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.24.0" +version = "0.25.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -24,9 +24,9 @@ columnar = { workspace = true } getopts = { version = "0.2.21", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.24" } -timely_container = { path = "../container", version = "0.24.0" } -timely_logging = { path = "../logging", version = "0.24" } +timely_bytes = { path = "../bytes", version = "0.25" } +timely_container = { path = "../container", version = "0.25.0" } +timely_logging = { path = "../logging", version = "0.25" } # 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 1400f71cf..cc7dc103a 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.24.0" +version = "0.25.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index cc8129100..ab02517ad 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.24.0" +version = "0.25.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.24.0", path = "../container" } +timely_container = { version = "0.25.0", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index bf3faa99f..453beb41f 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.24.0" +version = "0.25.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -29,10 +29,10 @@ bincode = { version = "1.0" } byteorder = "1.5" itertools = "0.14.0" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.24" } -timely_logging = { path = "../logging", version = "0.24" } -timely_communication = { path = "../communication", version = "0.24", default-features = false } -timely_container = { path = "../container", version = "0.24" } +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" } smallvec = { version = "1.13.2", features = ["serde", "const_generics"] } [dev-dependencies]