Skip to content

Commit 04894ca

Browse files
chore: release (#634)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 95ee597 commit 04894ca

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

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

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

5+
## [0.18.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.17.1...timely-v0.18.0) - 2025-02-12
6+
7+
### Other
8+
9+
- Update columnar to 0.3, and columnar example ([#635](https://github.com/TimelyDataflow/timely-dataflow/pull/635))
10+
- Convert Write::write to Write::write_all ([#636](https://github.com/TimelyDataflow/timely-dataflow/pull/636))
11+
- Introduce foundation for broadcast channel ([#633](https://github.com/TimelyDataflow/timely-dataflow/pull/633))
12+
513
## [0.17.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.17.0...timely-v0.17.1) - 2025-01-24
614

715
### 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.12.2"
3+
version = "0.13.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
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.16.2"
3+
version = "0.17.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -21,7 +21,7 @@ columnar = "0.2"
2121
getopts = { version = "0.2.21", optional = true }
2222
byteorder = "1.5"
2323
serde = { version = "1.0", features = ["derive"] }
24-
timely_bytes = { path = "../bytes", version = "0.12" }
24+
timely_bytes = { path = "../bytes", version = "0.13" }
2525
timely_container = { path = "../container", version = "0.14.0" }
2626
timely_logging = { path = "../logging", version = "0.13" }
2727
crossbeam-channel = "0.5"

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.17.1"
4+
version = "0.18.0"
55
authors = ["Frank McSherry <fmcsherry@me.com>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -24,9 +24,9 @@ getopts-dep = { package = "getopts", version = "0.2.21", optional = true }
2424
bincode = { version = "1.0" }
2525
byteorder = "1.5"
2626
serde = { version = "1.0", features = ["derive"] }
27-
timely_bytes = { path = "../bytes", version = "0.12" }
27+
timely_bytes = { path = "../bytes", version = "0.13" }
2828
timely_logging = { path = "../logging", version = "0.13" }
29-
timely_communication = { path = "../communication", version = "0.16", default-features = false }
29+
timely_communication = { path = "../communication", version = "0.17", default-features = false }
3030
timely_container = { path = "../container", version = "0.14" }
3131
crossbeam-channel = "0.5"
3232
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }

0 commit comments

Comments
 (0)