Skip to content

Commit f45b2aa

Browse files
chore: release v0.15.1 (#609)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f14716c commit f45b2aa

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

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

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

5+
## [0.15.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.15.0...timely-v0.15.1) - 2024-12-18
6+
7+
### Other
8+
9+
- Remove worker identifier from logging ([#533](https://github.com/TimelyDataflow/timely-dataflow/pull/533))
10+
- add `.partition()` for `StreamCore` (#610)
11+
- Update columnar ([#611](https://github.com/TimelyDataflow/timely-dataflow/pull/611))
12+
- Introduce columnar and derive extensively ([#608](https://github.com/TimelyDataflow/timely-dataflow/pull/608))
13+
514
## [0.15.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.14.1...timely-v0.15.0) - 2024-12-05
615

716
### Other

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.15.0"
3+
version = "0.16.0"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -22,5 +22,5 @@ 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_logging = { path = "../logging", version = "0.12" }
25+
timely_logging = { path = "../logging", version = "0.13" }
2626
crossbeam-channel = "0.5"

logging/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_logging"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Common timely logging infrastructure"
66
edition.workspace = true

timely/Cargo.toml

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

33
name = "timely"
4-
version = "0.15.0"
4+
version = "0.15.1"
55
authors = ["Frank McSherry <[email protected]>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -25,8 +25,8 @@ bincode = { version = "1.0" }
2525
byteorder = "1.5"
2626
serde = { version = "1.0", features = ["derive"] }
2727
timely_bytes = { path = "../bytes", version = "0.12" }
28-
timely_logging = { path = "../logging", version = "0.12" }
29-
timely_communication = { path = "../communication", version = "0.15", default-features = false }
28+
timely_logging = { path = "../logging", version = "0.13" }
29+
timely_communication = { path = "../communication", version = "0.16", default-features = false }
3030
timely_container = { path = "../container", version = "0.13" }
3131
crossbeam-channel = "0.5"
3232
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }

0 commit comments

Comments
 (0)