From 16ea800fb4b3e847edeeca230a212d11eb4a5b6f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 16:32:40 +0100 Subject: [PATCH] chore: release (#555) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- dogsdogsdogs/CHANGELOG.md | 6 ++++++ dogsdogsdogs/Cargo.toml | 4 ++-- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da11677e4..8549fec54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.3](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dataflow-v0.13.2...differential-dataflow-v0.13.3) - 2025-01-09 + +### Other + +- Incorporate breaking changes from Timely's logging update ([#558](https://github.com/TimelyDataflow/differential-dataflow/pull/558)) +- Derive columnar for log events ([#557](https://github.com/TimelyDataflow/differential-dataflow/pull/557)) +- Correct capacity logic +- Demonstrate container input batching ([#556](https://github.com/TimelyDataflow/differential-dataflow/pull/556)) +- Work towards `Batcher` unification ([#553](https://github.com/TimelyDataflow/differential-dataflow/pull/553)) + ## [0.13.2](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dataflow-v0.13.1...differential-dataflow-v0.13.2) - 2024-12-18 ### Other diff --git a/Cargo.toml b/Cargo.toml index 4cf33066c..aa9585128 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "differential-dataflow" -version = "0.13.2" +version = "0.13.3" authors = ["Frank McSherry "] description = "An incremental data-parallel dataflow platform" diff --git a/dogsdogsdogs/CHANGELOG.md b/dogsdogsdogs/CHANGELOG.md index 2a31f31bc..ab9aecf77 100644 --- a/dogsdogsdogs/CHANGELOG.md +++ b/dogsdogsdogs/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dogs3-v0.1.2...differential-dogs3-v0.1.3) - 2025-01-09 + +### Other + +- update Cargo.toml dependencies + ## [0.1.2](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dogs3-v0.1.1...differential-dogs3-v0.1.2) - 2024-12-18 ### Other diff --git a/dogsdogsdogs/Cargo.toml b/dogsdogsdogs/Cargo.toml index b1760b74f..79248ca3e 100644 --- a/dogsdogsdogs/Cargo.toml +++ b/dogsdogsdogs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "differential-dogs3" -version = "0.1.2" +version = "0.1.3" authors = ["Frank McSherry "] license = "MIT" edition = "2021" @@ -8,7 +8,7 @@ description = "Advanced join patterns in differential dataflow" [dependencies] timely = { workspace = true } -differential-dataflow = { path = "../", default-features = false, version = "0.13.2" } +differential-dataflow = { path = "../", default-features = false, version = "0.13.3" } serde = { version = "1.0", features = ["derive"]} [dev-dependencies]