diff --git a/CHANGELOG.md b/CHANGELOG.md index 2db8a938d..be64f033d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.18.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.17.1...timely-v0.18.0) - 2025-02-12 + +### Other + +- Update columnar to 0.3, and columnar example ([#635](https://github.com/TimelyDataflow/timely-dataflow/pull/635)) +- Convert Write::write to Write::write_all ([#636](https://github.com/TimelyDataflow/timely-dataflow/pull/636)) +- Introduce foundation for broadcast channel ([#633](https://github.com/TimelyDataflow/timely-dataflow/pull/633)) + ## [0.17.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.17.0...timely-v0.17.1) - 2025-01-24 ### Other diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index e053fcbb1..9d997d749 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.12.2" +version = "0.13.0" authors = ["Frank McSherry "] edition = "2018" diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 7f204b8eb..527f847de 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.16.2" +version = "0.17.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -21,7 +21,7 @@ columnar = "0.2" getopts = { version = "0.2.21", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.12" } +timely_bytes = { path = "../bytes", version = "0.13" } timely_container = { path = "../container", version = "0.14.0" } timely_logging = { path = "../logging", version = "0.13" } crossbeam-channel = "0.5" diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 7c9dd0e21..4bfabc9e6 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.17.1" +version = "0.18.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -24,9 +24,9 @@ getopts-dep = { package = "getopts", version = "0.2.21", optional = true } bincode = { version = "1.0" } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.12" } +timely_bytes = { path = "../bytes", version = "0.13" } timely_logging = { path = "../logging", version = "0.13" } -timely_communication = { path = "../communication", version = "0.16", default-features = false } +timely_communication = { path = "../communication", version = "0.17", default-features = false } timely_container = { path = "../container", version = "0.14" } crossbeam-channel = "0.5" smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }