Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2"
version = "0.13.3"
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.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
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.2"
version = "0.1.3"
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.2" }
differential-dataflow = { path = "../", default-features = false, version = "0.13.3" }
serde = { version = "1.0", features = ["derive"]}

[dev-dependencies]
Expand Down