Skip to content

Commit 428019b

Browse files
chore: release v0.28.0
1 parent 7350dac commit 428019b

6 files changed

Lines changed: 24 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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-13
11+
12+
### Other
13+
14+
- Convert `Tracker` structs to columnar ([#762](https://github.com/TimelyDataflow/timely-dataflow/pull/762))
15+
- Demonstrate lazy scheduling ([#754](https://github.com/TimelyDataflow/timely-dataflow/pull/754))
16+
- More work on #757 ([#759](https://github.com/TimelyDataflow/timely-dataflow/pull/759))
17+
- Partial progress on #757 ([#758](https://github.com/TimelyDataflow/timely-dataflow/pull/758))
18+
- Convert `Operate` to a builder trait ([#756](https://github.com/TimelyDataflow/timely-dataflow/pull/756))
19+
- Remove set_external_summary ([#592](https://github.com/TimelyDataflow/timely-dataflow/pull/592))
20+
1021
## [0.27.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.26.1...timely-v0.27.0) - 2026-03-03
1122

1223
### Other

bytes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_bytes"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
55
edition.workspace = true
66
rust-version.workspace = true

communication/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_communication"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -25,9 +25,9 @@ columnar = { workspace = true }
2525
getopts = { version = "0.2.24", optional = true }
2626
byteorder = "1.5"
2727
serde = { 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]

container/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_container"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
description = "Container abstractions for Timely"
55
license = "MIT"
66
edition.workspace = true

logging/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_logging"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
55
description = "Common timely logging infrastructure"
66
edition.workspace = true
@@ -16,4 +16,4 @@ license = "MIT"
1616
workspace = true
1717

1818
[dependencies]
19-
timely_container = { version = "0.27.0", path = "../container" }
19+
timely_container = { version = "0.28.0", path = "../container" }

timely/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "timely"
4-
version = "0.27.0"
4+
version = "0.28.0"
55
authors = ["Frank McSherry <fmcsherry@me.com>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -30,8 +30,8 @@ bincode = { version = "1.3" }
3030
byteorder = "1.5"
3131
itertools = "0.14.0"
3232
serde = { 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" }
3737
smallvec = { version = "1.15.1", features = ["serde", "const_generics"] }

0 commit comments

Comments
 (0)