Skip to content

Commit c429faf

Browse files
chore: release (#618)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 679e939 commit c429faf

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
## [0.16.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.16.0...timely-v0.16.1) - 2025-01-16
6+
7+
### Other
8+
9+
- Avoid allocation in progcaster ([#622](https://github.com/TimelyDataflow/timely-dataflow/pull/622))
10+
- Log action can distinguish data from flush ([#619](https://github.com/TimelyDataflow/timely-dataflow/pull/619))
11+
- give_container for arbitrary container builders ([#621](https://github.com/TimelyDataflow/timely-dataflow/pull/621))
12+
- Add an is_empty check before retrieving elapsed time. ([#620](https://github.com/TimelyDataflow/timely-dataflow/pull/620))
13+
- Correct documentation for execute_from_args ([#617](https://github.com/TimelyDataflow/timely-dataflow/pull/617))
14+
515
## [0.16.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.15.1...timely-v0.16.0) - 2025-01-09
616

717
### Other

communication/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_communication"
3-
version = "0.16.1"
3+
version = "0.16.2"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -22,6 +22,6 @@ getopts = { version = "0.2.21", optional = true }
2222
byteorder = "1.5"
2323
serde = { version = "1.0", features = ["derive"] }
2424
timely_bytes = { path = "../bytes", version = "0.12" }
25-
timely_container = { path = "../container", version = "0.13.1" }
25+
timely_container = { path = "../container", version = "0.14.0" }
2626
timely_logging = { path = "../logging", version = "0.13" }
2727
crossbeam-channel = "0.5"

container/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_container"
3-
version = "0.13.1"
3+
version = "0.14.0"
44
description = "Container abstractions for Timely"
55
license = "MIT"
66
edition.workspace = true

logging/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_logging"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Common timely logging infrastructure"
66
edition.workspace = true
@@ -12,4 +12,4 @@ keywords = ["timely", "dataflow", "logging"]
1212
license = "MIT"
1313

1414
[dependencies]
15-
timely_container = { version = "0.13.1", path = "../container" }
15+
timely_container = { version = "0.14.0", path = "../container" }

timely/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "timely"
4-
version = "0.16.0"
4+
version = "0.16.1"
55
authors = ["Frank McSherry <[email protected]>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -27,7 +27,7 @@ serde = { version = "1.0", features = ["derive"] }
2727
timely_bytes = { path = "../bytes", version = "0.12" }
2828
timely_logging = { path = "../logging", version = "0.13" }
2929
timely_communication = { path = "../communication", version = "0.16", default-features = false }
30-
timely_container = { path = "../container", version = "0.13" }
30+
timely_container = { path = "../container", version = "0.14" }
3131
crossbeam-channel = "0.5"
3232
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
3333

0 commit comments

Comments
 (0)