Skip to content

Commit 07afbfd

Browse files
committed
chore: bump versions of rust crates for another release party
Signed-off-by: R. Tyler Croy <[email protected]>
1 parent 131a6e2 commit 07afbfd

File tree

11 files changed

+31
-31
lines changed

11 files changed

+31
-31
lines changed

crates/aws/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-aws"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313

1414
[dependencies]
1515
# path dependencies
16-
deltalake-core = { version = "0.25.0", path = "../core", features = ["cloud"] }
16+
deltalake-core = { version = "0.26.0", path = "../core", features = ["cloud"] }
1717

1818
# workspace dependencies
1919
async-trait = { workspace = true }

crates/azure/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-azure"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -12,7 +12,7 @@ repository.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
deltalake-core = { version = "0.25.0", path = "../core", features = [
15+
deltalake-core = { version = "0.26.0", path = "../core", features = [
1616
"datafusion", "cloud",
1717
]}
1818

crates/catalog-glue/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-catalog-glue"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
async-trait = { workspace = true }
1616
aws-config = "1"
1717
aws-sdk-glue = "1"
18-
deltalake-core = { version = "0.25.0", path = "../core" }
18+
deltalake-core = { version = "0.26.0", path = "../core" }
1919
thiserror = { workspace = true }
2020

2121
[dev-dependencies]

crates/catalog-unity/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-catalog-unity"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -20,12 +20,12 @@ thiserror.workspace = true
2020
futures.workspace = true
2121
chrono.workspace = true
2222
tracing.workspace = true
23-
deltalake-core = { version = "0.25.0", path = "../core", features = [
23+
deltalake-core = { version = "0.26.0", path = "../core", features = [
2424
"datafusion",
2525
] }
26-
deltalake-aws = { version = "0.8.0", path = "../aws", optional = true }
27-
deltalake-azure = { version = "0.8.0", path = "../azure", optional = true }
28-
deltalake-gcp = { version = "0.9.0", path = "../gcp", optional = true }
26+
deltalake-aws = { version = "0.9.0", path = "../aws", optional = true }
27+
deltalake-azure = { version = "0.9.0", path = "../azure", optional = true }
28+
deltalake-gcp = { version = "0.10.0", path = "../gcp", optional = true }
2929
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "http2"] }
3030
reqwest-retry = "0.7"
3131
reqwest-middleware = { version = "0.4.0", features = ["json"] }

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-core"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true

crates/deltalake/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -25,14 +25,14 @@ features = [
2525
]
2626

2727
[dependencies]
28-
deltalake-core = { version = "0.25.0", path = "../core", default-features = false }
29-
deltalake-aws = { version = "0.8.0", path = "../aws", default-features = false, optional = true }
30-
deltalake-azure = { version = "0.8.0", path = "../azure", optional = true }
31-
deltalake-gcp = { version = "0.9.0", path = "../gcp", optional = true }
32-
deltalake-hdfs = { version = "0.9.0", path = "../hdfs", optional = true }
33-
deltalake-lakefs = { version = "0.8.0", path = "../lakefs", optional = true }
34-
deltalake-catalog-glue = { version = "0.9.0", path = "../catalog-glue", optional = true }
35-
deltalake-catalog-unity = { version = "0.9.0", path = "../catalog-unity", optional = true }
28+
deltalake-core = { version = "0.26.0", path = "../core", default-features = false }
29+
deltalake-aws = { version = "0.9.0", path = "../aws", default-features = false, optional = true }
30+
deltalake-azure = { version = "0.9.0", path = "../azure", optional = true }
31+
deltalake-gcp = { version = "0.10.0", path = "../gcp", optional = true }
32+
deltalake-hdfs = { version = "0.10.0", path = "../hdfs", optional = true }
33+
deltalake-lakefs = { version = "0.9.0", path = "../lakefs", optional = true }
34+
deltalake-catalog-glue = { version = "0.10.0", path = "../catalog-glue", optional = true }
35+
deltalake-catalog-unity = { version = "0.10.0", path = "../catalog-unity", optional = true }
3636

3737

3838
[features]

crates/gcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-gcp"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -12,7 +12,7 @@ repository.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
deltalake-core = { version = "0.25.0", path = "../core", features = ["cloud"] }
15+
deltalake-core = { version = "0.26.0", path = "../core", features = ["cloud"] }
1616

1717
# workspace depenndecies
1818
async-trait = { workspace = true }

crates/hdfs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-hdfs"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -12,7 +12,7 @@ repository.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
deltalake-core = { version = "0.25.0", path = "../core" }
15+
deltalake-core = { version = "0.26.0", path = "../core" }
1616
hdfs-native-object-store = "0.14"
1717

1818
# workspace dependecies

crates/lakefs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-lakefs"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -12,7 +12,7 @@ repository.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
deltalake-core = { version = "0.25.0", path = "../core", features = ["cloud"] }
15+
deltalake-core = { version = "0.26.0", path = "../core", features = ["cloud"] }
1616
# workspace dependencies
1717
async-trait = { workspace = true }
1818
bytes = { workspace = true }

crates/mount/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-mount"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors.workspace = true
55
keywords.workspace = true
66
readme.workspace = true
@@ -12,7 +12,7 @@ repository.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
deltalake-core = { version = "0.25.0", path = "../core", features = [
15+
deltalake-core = { version = "0.26.0", path = "../core", features = [
1616
"datafusion",
1717
] }
1818
errno = "0.3"

0 commit comments

Comments
 (0)