File tree Expand file tree Collapse file tree 6 files changed +24
-8
lines changed
Expand file tree Collapse file tree 6 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 22
33All 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-26
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
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_bytes"
3- version = " 0.13.0 "
3+ version = " 0.13.1 "
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55edition = " 2018"
66
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_communication"
3- version = " 0.18 .0"
3+ version = " 0.19 .0"
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55description = " Communication layer for timely dataflow"
66edition.workspace = true
@@ -25,7 +25,7 @@ getopts = { version = "0.2.21", optional = true }
2525byteorder = " 1.5"
2626serde = { version = " 1.0" , features = [" derive" ] }
2727timely_bytes = { path = " ../bytes" , version = " 0.13" }
28- timely_container = { path = " ../container" , version = " 0.15.0 " }
28+ timely_container = { path = " ../container" , version = " 0.15.1 " }
2929timely_logging = { path = " ../logging" , version = " 0.13" }
3030
3131# Lgalloc only supports linux and macos, don't depend on any other OS.
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_container"
3- version = " 0.15.0 "
3+ version = " 0.15.1 "
44description = " Container abstractions for Timely"
55license = " MIT"
66edition.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_logging"
3- version = " 0.13.3 "
3+ version = " 0.13.4 "
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55description = " Common timely logging infrastructure"
66edition.workspace = true
@@ -15,4 +15,4 @@ license = "MIT"
1515workspace = true
1616
1717[dependencies ]
18- timely_container = { version = " 0.15.0 " , path = " ../container" }
18+ timely_container = { version = " 0.15.1 " , path = " ../container" }
Original file line number Diff line number Diff line change 11[package ]
22
33name = " timely"
4- version = " 0.19 .0"
4+ version = " 0.20 .0"
55authors = [" Frank McSherry <fmcsherry@me.com>" ]
66readme = " ../README.md"
77edition.workspace = true
@@ -30,7 +30,7 @@ byteorder = "1.5"
3030serde = { version = " 1.0" , features = [" derive" ] }
3131timely_bytes = { path = " ../bytes" , version = " 0.13" }
3232timely_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 }
3434timely_container = { path = " ../container" , version = " 0.15" }
3535crossbeam-channel = " 0.5"
3636smallvec = { version = " 1.13.2" , features = [" serde" , " const_generics" ] }
You can’t perform that action at this time.
0 commit comments