diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index dac382ae7..e22004c7f 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_bytes" -version = "0.29.0" +version = "0.30.0" authors = ["Frank McSherry "] edition.workspace = true rust-version.workspace = true diff --git a/communication/Cargo.toml b/communication/Cargo.toml index aded24255..8d803a46e 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.29.0" +version = "0.30.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true @@ -25,9 +25,9 @@ columnar = { workspace = true } getopts = { version = "0.2.24", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.29" } -timely_container = { path = "../container", version = "0.29.0" } -timely_logging = { path = "../logging", version = "0.29" } +timely_bytes = { path = "../bytes", version = "0.30" } +timely_container = { path = "../container", version = "0.30.0" } +timely_logging = { path = "../logging", version = "0.30" } [dev-dependencies] tempfile = "3" diff --git a/container/Cargo.toml b/container/Cargo.toml index e039b5d04..c5bd12b75 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_container" -version = "0.29.0" +version = "0.30.0" description = "Container abstractions for Timely" license = "MIT" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 667b28e34..b10414e63 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.29.0" +version = "0.30.0" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true @@ -16,4 +16,4 @@ license = "MIT" workspace = true [dependencies] -timely_container = { version = "0.29.0", path = "../container" } +timely_container = { version = "0.30.0", path = "../container" } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 0e99e325c..c7a94f843 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.29.0" +version = "0.30.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -30,8 +30,8 @@ bincode = { version = "1.3" } byteorder = "1.5" itertools = "0.14.0" serde = { version = "1.0", features = ["derive"] } -timely_bytes = { path = "../bytes", version = "0.29" } -timely_logging = { path = "../logging", version = "0.29" } -timely_communication = { path = "../communication", version = "0.29", default-features = false } -timely_container = { path = "../container", version = "0.29" } +timely_bytes = { path = "../bytes", version = "0.30" } +timely_logging = { path = "../logging", version = "0.30" } +timely_communication = { path = "../communication", version = "0.30", default-features = false } +timely_container = { path = "../container", version = "0.30" } smallvec = { version = "1.15.1", features = ["serde", "const_generics"] }