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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file.

## [0.20.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.19.0...timely-v0.20.0) - 2025-03-28

### Other

- Update timely/src/progress/operate.rs
- Add scaling test
- Switch builder API to port-identified iterators
- Adjust reachability logic to be more linear
- Swap PortConnectivity implementation from Vec to BTreeMap
- Support optional path summaries for disconnected ports
- Make PortConnectivity API more explicit
- Make PortConnectivity a struct, with sufficient methods
- Introduce Connectivity and PortConnectivity type aliases
- Add clippy lints ([#659](https://github.com/TimelyDataflow/timely-dataflow/pull/659))
- Add miri test ([#655](https://github.com/TimelyDataflow/timely-dataflow/pull/655))

## [0.19.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.1...timely-v0.19.0) - 2025-02-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_bytes"
version = "0.13.0"
version = "0.13.1"
authors = ["Frank McSherry <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions communication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_communication"
version = "0.18.0"
version = "0.19.0"
authors = ["Frank McSherry <[email protected]>"]
description = "Communication layer for timely dataflow"
edition.workspace = true
Expand All @@ -25,7 +25,7 @@ getopts = { version = "0.2.21", optional = true }
byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.13" }
timely_container = { path = "../container", version = "0.15.0" }
timely_container = { path = "../container", version = "0.15.1" }
timely_logging = { path = "../logging", version = "0.13" }

# Lgalloc only supports linux and macos, don't depend on any other OS.
Expand Down
2 changes: 1 addition & 1 deletion container/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_container"
version = "0.15.0"
version = "0.15.1"
description = "Container abstractions for Timely"
license = "MIT"
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_logging"
version = "0.13.3"
version = "0.13.4"
authors = ["Frank McSherry <[email protected]>"]
description = "Common timely logging infrastructure"
edition.workspace = true
Expand All @@ -15,4 +15,4 @@ license = "MIT"
workspace = true

[dependencies]
timely_container = { version = "0.15.0", path = "../container" }
timely_container = { version = "0.15.1", path = "../container" }
4 changes: 2 additions & 2 deletions timely/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "timely"
version = "0.19.0"
version = "0.20.0"
authors = ["Frank McSherry <[email protected]>"]
readme = "../README.md"
edition.workspace = true
Expand Down Expand Up @@ -30,7 +30,7 @@ byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.13" }
timely_logging = { path = "../logging", version = "0.13" }
timely_communication = { path = "../communication", version = "0.18", default-features = false }
timely_communication = { path = "../communication", version = "0.19", default-features = false }
timely_container = { path = "../container", version = "0.15" }
crossbeam-channel = "0.5"
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
Expand Down