Skip to content

Commit bdd77cc

Browse files
chore: release v0.21.5
1 parent 33a8876 commit bdd77cc

File tree

6 files changed

+28
-13
lines changed

6 files changed

+28
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

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

5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.21.5](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.21.4...timely-v0.21.5) - 2025-08-05
11+
12+
### Other
13+
14+
- Update to columnar 0.10 and make flush public
15+
- Upgrade to columnar 0.9
16+
# Changelog
17+
18+
All notable changes to this project will be documented in this file.
19+
520
## [0.21.4](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.21.3...timely-v0.21.4) - 2025-07-06
621

722
### 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.13.1"
3+
version = "0.21.5"
44
authors = ["Frank McSherry <[email protected]>"]
55
edition = "2018"
66

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.19.4"
3+
version = "0.21.5"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -24,9 +24,9 @@ columnar = { workspace = true }
2424
getopts = { version = "0.2.21", optional = true }
2525
byteorder = "1.5"
2626
serde = { version = "1.0", features = ["derive"] }
27-
timely_bytes = { path = "../bytes", version = "0.13" }
28-
timely_container = { path = "../container", version = "0.15.2" }
29-
timely_logging = { path = "../logging", version = "0.13" }
27+
timely_bytes = { path = "../bytes", version = "0.21" }
28+
timely_container = { path = "../container", version = "0.21.5" }
29+
timely_logging = { path = "../logging", version = "0.21" }
3030

3131
# Lgalloc only supports linux and macos, don't depend on any other OS.
3232
[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.15.2"
3+
version = "0.21.5"
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.13.5"
3+
version = "0.21.5"
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.2", path = "../container" }
18+
timely_container = { version = "0.21.5", 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.21.4"
4+
version = "0.21.5"
55
authors = ["Frank McSherry <[email protected]>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -28,10 +28,10 @@ getopts = { version = "0.2.21", optional = true }
2828
bincode = { version = "1.0" }
2929
byteorder = "1.5"
3030
serde = { version = "1.0", features = ["derive"] }
31-
timely_bytes = { path = "../bytes", version = "0.13" }
32-
timely_logging = { path = "../logging", version = "0.13" }
33-
timely_communication = { path = "../communication", version = "0.19", default-features = false }
34-
timely_container = { path = "../container", version = "0.15" }
31+
timely_bytes = { path = "../bytes", version = "0.21" }
32+
timely_logging = { path = "../logging", version = "0.21" }
33+
timely_communication = { path = "../communication", version = "0.21", default-features = false }
34+
timely_container = { path = "../container", version = "0.21" }
3535
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
3636

3737
[dev-dependencies]

0 commit comments

Comments
 (0)