Skip to content

Commit 53efa2c

Browse files
chore: release
1 parent ddfd9b9 commit 53efa2c

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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-18
6+
7+
### Other
8+
9+
- Remove columnation and flatcontainer deps ([#647](https://github.com/TimelyDataflow/timely-dataflow/pull/647))
10+
511
## [0.18.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.18.0...timely-v0.18.1) - 2025-02-12
612

713
### 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.17.1"
3+
version = "0.18.0"
44
authors = ["Frank McSherry <[email protected]>"]
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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 <[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.14.0", path = "../container" }
15+
timely_container = { version = "0.15.0", path = "../container" }

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.18.1"
4+
version = "0.19.0"
55
authors = ["Frank McSherry <[email protected]>"]
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)