Skip to content

Commit c0cdc02

Browse files
chore: release v0.25.1 (#722)
* chore: release v0.25.1 * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Moritz Hoffmann <[email protected]>
1 parent a0e77e2 commit c0cdc02

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.25.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.25.0...timely-v0.25.1) - 2025-10-28
11+
12+
This release fixes an issue with corrupted progress traffic when using the push counter's `give` function.
13+
In Timely, we use it within the replay and probe operators, but downstream crates might use it in more
14+
places. Do not use version v0.25.0.
15+
16+
- Record progress updates for direct container sends ([#721](https://github.com/TimelyDataflow/timely-dataflow/pull/721))
17+
1018
## [0.25.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.24.0...timely-v0.25.0) - 2025-10-23
1119

1220
The timely operator architecture has changed a bit, for the better but with footguns for migration.

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

communication/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_communication"
3-
version = "0.25.0"
3+
version = "0.25.1"
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.24", optional = true }
2525
byteorder = "1.5"
2626
serde = { version = "1.0", features = ["derive"] }
2727
timely_bytes = { path = "../bytes", version = "0.25" }
28-
timely_container = { path = "../container", version = "0.25.0" }
28+
timely_container = { path = "../container", version = "0.25.1" }
2929
timely_logging = { path = "../logging", version = "0.25" }
3030

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

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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
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.25.0", path = "../container" }
18+
timely_container = { version = "0.25.1", path = "../container" }

timely/Cargo.toml

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

33
name = "timely"
4-
version = "0.25.0"
4+
version = "0.25.1"
55
authors = ["Frank McSherry <[email protected]>"]
66
readme = "../README.md"
77
edition.workspace = true

0 commit comments

Comments
 (0)