Skip to content

Commit 9149605

Browse files
chore: release
1 parent 6f53f22 commit 9149605

File tree

6 files changed

+24
-8
lines changed

6 files changed

+24
-8
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

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

5+
## [0.20.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.19.0...timely-v0.20.0) - 2025-03-28
6+
7+
### Other
8+
9+
- Update timely/src/progress/operate.rs
10+
- Add scaling test
11+
- Switch builder API to port-identified iterators
12+
- Adjust reachability logic to be more linear
13+
- Swap PortConnectivity implementation from Vec to BTreeMap
14+
- Support optional path summaries for disconnected ports
15+
- Make PortConnectivity API more explicit
16+
- Make PortConnectivity a struct, with sufficient methods
17+
- Introduce Connectivity and PortConnectivity type aliases
18+
- Add clippy lints ([#659](https://github.com/TimelyDataflow/timely-dataflow/pull/659))
19+
- Add miri test ([#655](https://github.com/TimelyDataflow/timely-dataflow/pull/655))
20+
521
## [0.19.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.1...timely-v0.19.0) - 2025-02-28
622

723
### Other

bytes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_bytes"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Frank McSherry <[email protected]>"]
55
edition = "2018"
66

communication/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_communication"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -25,7 +25,7 @@ getopts = { version = "0.2.21", optional = true }
2525
byteorder = "1.5"
2626
serde = { version = "1.0", features = ["derive"] }
2727
timely_bytes = { path = "../bytes", version = "0.13" }
28-
timely_container = { path = "../container", version = "0.15.0" }
28+
timely_container = { path = "../container", version = "0.15.1" }
2929
timely_logging = { path = "../logging", version = "0.13" }
3030

3131
# Lgalloc only supports linux and macos, don't depend on any other OS.

container/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_container"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
description = "Container abstractions for Timely"
55
license = "MIT"
66
edition.workspace = true

logging/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_logging"
3-
version = "0.13.3"
3+
version = "0.13.4"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Common timely logging infrastructure"
66
edition.workspace = true
@@ -15,4 +15,4 @@ license = "MIT"
1515
workspace = true
1616

1717
[dependencies]
18-
timely_container = { version = "0.15.0", path = "../container" }
18+
timely_container = { version = "0.15.1", path = "../container" }

timely/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

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

0 commit comments

Comments
 (0)