Skip to content

Commit

Permalink
prepare the next 🦀 release with fixed version ranges
Browse files Browse the repository at this point in the history
Until we release 1.0, every 0.x release is going to be treated as a
"major" or incompatible change by Cargo

Fixes #2847
  • Loading branch information
rtyler committed Sep 10, 2024
1 parent df504fa commit 6f1f12b
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 21 deletions.
4 changes: 2 additions & 2 deletions crates/aws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-aws"
version = "0.1.4"
version = "0.2.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = ">=0.17.0, <0.20.0", path = "../core" }
deltalake-core = { version = "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
4 changes: 2 additions & 2 deletions crates/azure/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-azure"
version = "0.1.4"
version = "0.2.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

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

# workspace depenndecies
Expand Down
6 changes: 2 additions & 4 deletions crates/catalog-glue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-catalog-glue"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -15,9 +15,7 @@ rust-version.workspace = true
async-trait = { workspace = true }
aws-config = "1"
aws-sdk-glue = "1"
deltalake-core = { version = ">=0.17.0, <0.20.0", path = "../core" }
# This can depend on a lowest common denominator of core once that's released
# deltalake_core = { version = "0.17.0" }
deltalake-core = { version = "0.19.0", path = "../core" }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions crates/deltalake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ rust-version.workspace = true
features = ["azure", "datafusion", "gcs", "hdfs", "json", "python", "s3", "unity-experimental"]

[dependencies]
deltalake-core = { version = "0.19.0", path = "../core" }
deltalake-aws = { version = "0.1.4", path = "../aws", default-features = false, optional = true }
deltalake-azure = { version = "0.1.4", path = "../azure", optional = true }
deltalake-gcp = { version = "0.2.2", path = "../gcp", optional = true }
deltalake-hdfs = { version = "0.2.0", path = "../hdfs", optional = true }
deltalake-catalog-glue = { version = "0.2.0", path = "../catalog-glue", optional = true }
deltalake-core = { version = "0.19.1", path = "../core" }
deltalake-aws = { version = "0.2.0", path = "../aws", default-features = false, optional = true }
deltalake-azure = { version = "0.2.0", path = "../azure", optional = true }
deltalake-gcp = { version = "0.3.0", path = "../gcp", optional = true }
deltalake-hdfs = { version = "0.3.0", path = "../hdfs", optional = true }
deltalake-catalog-glue = { version = "0.3.0", path = "../catalog-glue", optional = true }

[features]
# All of these features are just reflected into the core crate until that
Expand Down
4 changes: 2 additions & 2 deletions crates/gcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-gcp"
version = "0.2.3"
version = "0.3.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

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

# workspace depenndecies
Expand Down
4 changes: 2 additions & 2 deletions crates/hdfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-hdfs"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = ">=0.17.0, <0.20.0", path = "../core" }
deltalake-core = { version = "0.19.0", path = "../core" }
hdfs-native-object-store = "0.11"

# workspace dependecies
Expand Down
4 changes: 2 additions & 2 deletions crates/mount/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-mount"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
deltalake-core = { version = ">=0.17.0, <0.20.0", path = "../core", features = [
deltalake-core = { version = "0.19.0", path = "../core", features = [
"datafusion",
] }
lazy_static = "1"
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-python"
version = "0.19.2"
version = "0.19.3"
authors = ["Qingping Hou <[email protected]>", "Will Jones <[email protected]>"]
homepage = "https:/delta-io/delta-rs"
license = "Apache-2.0"
Expand Down

0 comments on commit 6f1f12b

Please sign in to comment.