Skip to content

Commit 0d2b21f

Browse files
chore: release (#643)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a4c87f5 commit 0d2b21f

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

+8
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.19.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.1...timely-v0.19.0) - 2025-02-28
6+
7+
### Other
8+
9+
- Use `dep` syntax with `getopts` ([#591](https://github.com/TimelyDataflow/timely-dataflow/pull/591))
10+
- Make Buffer::push_into private ([#649](https://github.com/TimelyDataflow/timely-dataflow/pull/649))
11+
- Remove columnation and flatcontainer deps ([#647](https://github.com/TimelyDataflow/timely-dataflow/pull/647))
12+
513
## [0.18.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.0...timely-v0.18.1) - 2025-02-12
614

715
### 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.17.1"
3+
version = "0.18.0"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true
@@ -22,7 +22,7 @@ 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.13" }
25-
timely_container = { path = "../container", version = "0.14.0" }
25+
timely_container = { path = "../container", version = "0.15.0" }
2626
timely_logging = { path = "../logging", version = "0.13" }
2727
crossbeam-channel = "0.5"
2828

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.14.0"
3+
version = "0.15.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.2"
3+
version = "0.13.3"
44
authors = ["Frank McSherry <fmcsherry@me.com>"]
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.14.0", path = "../container" }
15+
timely_container = { version = "0.15.0", path = "../container" }

timely/Cargo.toml

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

33
name = "timely"
4-
version = "0.18.1"
4+
version = "0.19.0"
55
authors = ["Frank McSherry <fmcsherry@me.com>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -27,8 +27,8 @@ byteorder = "1.5"
2727
serde = { version = "1.0", features = ["derive"] }
2828
timely_bytes = { path = "../bytes", version = "0.13" }
2929
timely_logging = { path = "../logging", version = "0.13" }
30-
timely_communication = { path = "../communication", version = "0.17", default-features = false }
31-
timely_container = { path = "../container", version = "0.14" }
30+
timely_communication = { path = "../communication", version = "0.18", default-features = false }
31+
timely_container = { path = "../container", version = "0.15" }
3232
crossbeam-channel = "0.5"
3333
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
3434

0 commit comments

Comments
 (0)