From b032e73d979f76fc16d87a224737fd380bb76f28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Nov 2024 23:52:17 +0000 Subject: [PATCH] chore(timely): release v0.15.0 --- CHANGELOG.md | 7 +++++++ bytes/Cargo.toml | 2 +- communication/Cargo.toml | 2 +- container/Cargo.toml | 2 +- timely/Cargo.toml | 4 ++-- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae842d304..405f90ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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-24 + +### Other + +- 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..27d358096 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.12.0" +version = "0.12.1" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 6b7b41d6c..8ba9cfe93 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,7 +24,7 @@ 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_communication = { path = "../communication", version = "0.15", default-features = false } timely_container = { path = "../container", version = "0.12" } crossbeam-channel = "0.5" smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }