diff --git a/CHANGELOG.md b/CHANGELOG.md index 882228157..75639f6f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.19.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.1...timely-v0.19.0) - 2025-02-28 + +### Other + +- Use `dep` syntax with `getopts` ([#591](https://github.com/TimelyDataflow/timely-dataflow/pull/591)) +- Make Buffer::push_into private ([#649](https://github.com/TimelyDataflow/timely-dataflow/pull/649)) +- Remove columnation and flatcontainer deps ([#647](https://github.com/TimelyDataflow/timely-dataflow/pull/647)) + ## [0.18.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.0...timely-v0.18.1) - 2025-02-12 ### Other diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 93f024b96..9db507666 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.17.1" +version = "0.18.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -22,7 +22,7 @@ getopts = { version = "0.2.21", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.13" } -timely_container = { path = "../container", version = "0.14.0" } +timely_container = { path = "../container", version = "0.15.0" } timely_logging = { path = "../logging", version = "0.13" } crossbeam-channel = "0.5" diff --git a/container/Cargo.toml b/container/Cargo.toml index 41c46c2ef..db9c41e0d 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.14.0" +version = "0.15.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 92f0ef405..33722fd86 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.13.2" +version = "0.13.3" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true @@ -12,4 +12,4 @@ keywords = ["timely", "dataflow", "logging"] license = "MIT" [dependencies] -timely_container = { version = "0.14.0", path = "../container" } +timely_container = { version = "0.15.0", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 27c508af0..5b68e6a60 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.18.1" +version = "0.19.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -27,8 +27,8 @@ byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.13" } timely_logging = { path = "../logging", version = "0.13" } -timely_communication = { path = "../communication", version = "0.17", default-features = false } -timely_container = { path = "../container", version = "0.14" } +timely_communication = { path = "../communication", version = "0.18", default-features = false } +timely_container = { path = "../container", version = "0.15" } crossbeam-channel = "0.5" smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }