From 86f1f5f35ff384c2655e2ff9a68adbe8cfa71e1d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 22:11:48 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 13 +++++++++++++ bytes/Cargo.toml | 2 +- communication/Cargo.toml | 2 +- container/Cargo.toml | 2 +- timely/Cargo.toml | 6 +++--- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae842d304..c9c632926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [0.15.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.14.1...timely-v0.15.0) - 2024-11-30 + +### Other + +- Reorganize `Container` traits ([#605](https://github.com/TimelyDataflow/timely-dataflow/pull/605)) +- Robustify potential Bytes alignment +- Correct bincode call to use and update reader +- Demonstrate `columnar` stuff ([#586](https://github.com/TimelyDataflow/timely-dataflow/pull/586)) +- Allow containers to specify their own serialization ([#604](https://github.com/TimelyDataflow/timely-dataflow/pull/604)) +- Remove Container: Clone + 'static ([#540](https://github.com/TimelyDataflow/timely-dataflow/pull/540)) +- Apply various Clippy recommendations ([#603](https://github.com/TimelyDataflow/timely-dataflow/pull/603)) +- Several improvements around `Bytesable` and `Message`. ([#601](https://github.com/TimelyDataflow/timely-dataflow/pull/601)) + ## [0.14.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.14.0...timely-v0.14.1) - 2024-11-12 ### Added diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index e3c8cb50a..e053fcbb1 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.12.1" +version = "0.12.2" authors = ["Frank McSherry "] edition = "2018" diff --git a/communication/Cargo.toml b/communication/Cargo.toml index b80e8bff4..dee4a3b19 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.14.0" +version = "0.15.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true diff --git a/container/Cargo.toml b/container/Cargo.toml index c767637a3..c34a7b049 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.12.0" +version = "0.13.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 861cac8b9..0e4109108 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.14.1" +version = "0.15.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -24,8 +24,8 @@ bincode = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.12" } timely_logging = { path = "../logging", version = "0.12" } -timely_communication = { path = "../communication", version = "0.14", default-features = false } -timely_container = { path = "../container", version = "0.12" } +timely_communication = { path = "../communication", version = "0.15", default-features = false } +timely_container = { path = "../container", version = "0.13" } crossbeam-channel = "0.5" smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }