diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c94b877..da11677e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.2](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dataflow-v0.13.1...differential-dataflow-v0.13.2) - 2024-12-18 + +### Other + +- Update to track timely changes ([#554](https://github.com/TimelyDataflow/differential-dataflow/pull/554)) +- Consolidation consolidation ([#552](https://github.com/TimelyDataflow/differential-dataflow/pull/552)) +- Pass description itself to builder ([#551](https://github.com/TimelyDataflow/differential-dataflow/pull/551)) +- Simplify ContainerChunker::push_into ([#549](https://github.com/TimelyDataflow/differential-dataflow/pull/549)) +- Remove time from MergeBatcher ([#550](https://github.com/TimelyDataflow/differential-dataflow/pull/550)) +- Changes to track timely master ([#542](https://github.com/TimelyDataflow/differential-dataflow/pull/542)) +- Remove (key, val) structure from merge batchers ([#548](https://github.com/TimelyDataflow/differential-dataflow/pull/548)) +- Merge batcher for flat container without key and value ([#547](https://github.com/TimelyDataflow/differential-dataflow/pull/547)) +- Move `Batcher::seal` to `Builder` ([#546](https://github.com/TimelyDataflow/differential-dataflow/pull/546)) +- Extract `Builder` from `Trace` ([#545](https://github.com/TimelyDataflow/differential-dataflow/pull/545)) +- Remove batcher from Trace ([#544](https://github.com/TimelyDataflow/differential-dataflow/pull/544)) +- Build against timely master ([#539](https://github.com/TimelyDataflow/differential-dataflow/pull/539)) + ## [0.13.1](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dataflow-v0.13.0...differential-dataflow-v0.13.1) - 2024-11-11 ### Other diff --git a/Cargo.toml b/Cargo.toml index 57a6c3ddf..1c52d1aea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "differential-dataflow" -version = "0.13.1" +version = "0.13.2" authors = ["Frank McSherry "] description = "An incremental data-parallel dataflow platform" diff --git a/dogsdogsdogs/CHANGELOG.md b/dogsdogsdogs/CHANGELOG.md index 901f3ea8b..2a31f31bc 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.2](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dogs3-v0.1.1...differential-dogs3-v0.1.2) - 2024-12-18 + +### Other + +- update Cargo.toml dependencies + ## [0.1.1](https://github.com/TimelyDataflow/differential-dataflow/compare/differential-dogs3-v0.1.0...differential-dogs3-v0.1.1) - 2024-11-11 ### Other diff --git a/dogsdogsdogs/Cargo.toml b/dogsdogsdogs/Cargo.toml index 5c4b8905d..b1760b74f 100644 --- a/dogsdogsdogs/Cargo.toml +++ b/dogsdogsdogs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "differential-dogs3" -version = "0.1.1" +version = "0.1.2" 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.1" } +differential-dataflow = { path = "../", default-features = false, version = "0.13.2" } serde = { version = "1.0", features = ["derive"]} [dev-dependencies]