Skip to content

Commit c6de342

Browse files
chore: release (#613)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 452226b commit c6de342

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## [0.16.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.15.1...timely-v0.16.0) - 2025-01-09
6+
7+
### Other
8+
9+
- Define loggers in terms of container builders ([#615](https://github.com/TimelyDataflow/timely-dataflow/pull/615))
10+
- Remove SizableContainer requirement from partition ([#612](https://github.com/TimelyDataflow/timely-dataflow/pull/612))
11+
512
## [0.15.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.15.0...timely-v0.15.1) - 2024-12-18
613

714
### 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.0"
3+
version = "0.16.1"
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.0" }
25+
timely_container = { path = "../container", version = "0.13.1" }
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.0"
3+
version = "0.13.1"
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.0"
3+
version = "0.13.1"
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.0", path = "../container" }
15+
timely_container = { version = "0.13.1", path = "../container" }

timely/Cargo.toml

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

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

0 commit comments

Comments
 (0)