Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #540

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "differential-dataflow"
version = "0.13.1"
version = "0.13.2"
authors = ["Frank McSherry <[email protected]>"]

description = "An incremental data-parallel dataflow platform"
Expand Down
6 changes: 6 additions & 0 deletions dogsdogsdogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions dogsdogsdogs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "differential-dogs3"
version = "0.1.1"
version = "0.1.2"
authors = ["Frank McSherry <[email protected]>"]
license = "MIT"
edition = "2021"
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]
Expand Down