Skip to content

Commit

Permalink
chore: update all the version ranges to handle the new 0.18.0 point r…
Browse files Browse the repository at this point in the history
…elease

Many of the subcrates are unafected by any changes here, so I'm just
expanding their compatibility range.
  • Loading branch information
rtyler committed May 29, 2024
1 parent dc10ada commit b05d7e9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/aws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = "0.17.0", path = "../core" }
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core" }
aws-smithy-runtime-api = { version="1.1.7" }
aws-smithy-runtime = { version="1.1.7", optional = true}
aws-credential-types = { version="1.1.7", features = ["hardcoded-credentials"]}
Expand Down
2 changes: 1 addition & 1 deletion crates/azure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = "0.17.0", path = "../core" }
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core" }
lazy_static = "1"

# workspace depenndecies
Expand Down
2 changes: 1 addition & 1 deletion crates/catalog-glue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version.workspace = true
async-trait = { workspace = true }
aws-config = "1"
aws-sdk-glue = "1"
deltalake-core = { version = "0.17.0", path = "../core" }
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core" }
# This can depend on a lowest common denominator of core once that's released
# deltalake_core = { version = "0.17.0" }
thiserror = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/deltalake/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake"
version = "0.17.3"
version = "0.18.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -17,7 +17,7 @@ rust-version.workspace = true
features = ["azure", "datafusion", "gcs", "hdfs", "json", "python", "s3", "unity-experimental"]

[dependencies]
deltalake-core = { version = "0.17.3", path = "../core" }
deltalake-core = { version = "~0.18.0", path = "../core" }
deltalake-aws = { version = "0.1.1", path = "../aws", default-features = false, optional = true }
deltalake-azure = { version = "0.1.1", path = "../azure", optional = true }
deltalake-gcp = { version = "0.2.1", path = "../gcp", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/gcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = "0.17.0", path = "../core" }
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core" }
lazy_static = "1"

# workspace depenndecies
Expand Down
2 changes: 1 addition & 1 deletion crates/mount/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = "0.17.0", path = "../core", features = [
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core", features = [
"datafusion",
] }
lazy_static = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
bytes = { workspace = true }
chrono = { workspace = true, default-features = false, features = ["clock"] }
deltalake-core = { version = "0.17.0", path = "../core" }
deltalake-core = { version = ">=0.17.0, <0.19.0", path = "../core" }
dotenvy = "0"
fs_extra = "1.3.0"
futures = { version = "0.3" }
Expand Down

0 comments on commit b05d7e9

Please sign in to comment.