File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.28.0] ( https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.27.0...timely-v0.28.0 ) - 2026-03-20
11+
12+ ### Other
13+
14+ - Correct logged operator addr; improve documentation ([ #767 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/767 ) )
15+ - Improve logging documentation, examples, and consistency ([ #766 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/766 ) )
16+ - Convert ` Tracker ` structs to columnar ([ #762 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/762 ) )
17+ - Demonstrate lazy scheduling ([ #754 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/754 ) )
18+ - More work on #757 ([ #759 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/759 ) )
19+ - Partial progress on #757 ([ #758 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/758 ) )
20+ - Convert ` Operate ` to a builder trait ([ #756 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/756 ) )
21+ - Remove set_external_summary ([ #592 ] ( https://github.com/TimelyDataflow/timely-dataflow/pull/592 ) )
22+
1023## [ 0.27.0] ( https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.26.1...timely-v0.27.0 ) - 2026-03-03
1124
1225### Other
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_bytes"
3- version = " 0.27 .0"
3+ version = " 0.28 .0"
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55edition.workspace = true
66rust-version.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_communication"
3- version = " 0.27 .0"
3+ version = " 0.28 .0"
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55description = " Communication layer for timely dataflow"
66edition.workspace = true
@@ -25,9 +25,9 @@ columnar = { workspace = true }
2525getopts = { version = " 0.2.24" , optional = true }
2626byteorder = " 1.5"
2727serde = { version = " 1.0" , features = [" derive" ] }
28- timely_bytes = { path = " ../bytes" , version = " 0.27 " }
29- timely_container = { path = " ../container" , version = " 0.27 .0" }
30- timely_logging = { path = " ../logging" , version = " 0.27 " }
28+ timely_bytes = { path = " ../bytes" , version = " 0.28 " }
29+ timely_container = { path = " ../container" , version = " 0.28 .0" }
30+ timely_logging = { path = " ../logging" , version = " 0.28 " }
3131
3232# Lgalloc only supports linux and macos, don't depend on any other OS.
3333[target .'cfg(any(target_os = "linux", target_os = "macos"))' .dev-dependencies ]
Original file line number Diff line number Diff line change 11[package ]
22name = " timely_container"
3- version = " 0.27 .0"
3+ version = " 0.28 .0"
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.27 .0"
3+ version = " 0.28 .0"
44authors = [" Frank McSherry <fmcsherry@me.com>" ]
55description = " Common timely logging infrastructure"
66edition.workspace = true
@@ -16,4 +16,4 @@ license = "MIT"
1616workspace = true
1717
1818[dependencies ]
19- timely_container = { version = " 0.27 .0" , path = " ../container" }
19+ timely_container = { version = " 0.28 .0" , path = " ../container" }
Original file line number Diff line number Diff line change 11[package ]
22
33name = " timely"
4- version = " 0.27 .0"
4+ version = " 0.28 .0"
55authors = [" Frank McSherry <fmcsherry@me.com>" ]
66readme = " ../README.md"
77edition.workspace = true
@@ -30,8 +30,8 @@ bincode = { version = "1.3" }
3030byteorder = " 1.5"
3131itertools = " 0.14.0"
3232serde = { version = " 1.0" , features = [" derive" ] }
33- timely_bytes = { path = " ../bytes" , version = " 0.27 " }
34- timely_logging = { path = " ../logging" , version = " 0.27 " }
35- timely_communication = { path = " ../communication" , version = " 0.27 " , default-features = false }
36- timely_container = { path = " ../container" , version = " 0.27 " }
33+ timely_bytes = { path = " ../bytes" , version = " 0.28 " }
34+ timely_logging = { path = " ../logging" , version = " 0.28 " }
35+ timely_communication = { path = " ../communication" , version = " 0.28 " , default-features = false }
36+ timely_container = { path = " ../container" , version = " 0.28 " }
3737smallvec = { version = " 1.15.1" , features = [" serde" , " const_generics" ] }
You can’t perform that action at this time.
0 commit comments