Skip to content

Commit

Permalink
chore: preparing the 0.24 release of the Rust crates`
Browse files Browse the repository at this point in the history
Signed-off-by: R. Tyler Croy <[email protected]>
  • Loading branch information
rtyler committed Jan 15, 2025
1 parent d73a9af commit af3102e
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 29 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.6.1"
version = "0.7.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.23.0", path = "../core" }
deltalake-core = { version = "0.24.0", path = "../core" }
aws-smithy-runtime-api = { version="1.7" }
aws-smithy-runtime = { version="1.7", optional = true}
aws-credential-types = { version="1.2", features = ["hardcoded-credentials"]}
Expand Down
2 changes: 2 additions & 0 deletions crates/aws/src/credentials.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ mod tests {
}

#[tokio::test]
#[serial]
async fn test_object_store_credential_provider() -> DeltaResult<()> {
let options = StorageOptions(hashmap! {
constants::AWS_ACCESS_KEY_ID.to_string() => "test_id".to_string(),
Expand All @@ -388,6 +389,7 @@ mod tests {
/// API calls in the scenarios where the delta-rs process is performing a large number of S3
/// operations.
#[tokio::test]
#[serial]
async fn test_object_store_credential_provider_consistency() -> DeltaResult<()> {
let options = StorageOptions(hashmap! {
constants::AWS_ACCESS_KEY_ID.to_string() => "test_id".to_string(),
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.6.0"
version = "0.7.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.23.0", path = "../core", features = [
deltalake-core = { version = "0.24.0", path = "../core", features = [
"datafusion",
]}
lazy_static = "1"
Expand Down
4 changes: 2 additions & 2 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.7.0"
version = "0.8.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -15,7 +15,7 @@ rust-version.workspace = true
async-trait = { workspace = true }
aws-config = "1"
aws-sdk-glue = "1"
deltalake-core = { version = "0.23.0", path = "../core" }
deltalake-core = { version = "0.24.0", path = "../core" }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/catalog-unity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-catalog-unity"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -17,7 +17,7 @@ tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
deltalake-core = { version = "0.23", path = "../core", features = [
deltalake-core = { version = "0.24.0", path = "../core", features = [
"datafusion",
]}
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "http2"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-core"
version = "0.23.1"
version = "0.24.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand Down
18 changes: 9 additions & 9 deletions crates/deltalake/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake"
version = "0.23.1"
version = "0.24.0"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -16,14 +16,14 @@ rust-version.workspace = true
features = ["azure", "datafusion", "gcs", "hdfs", "json", "python", "s3", "unity-experimental"]

[dependencies]
deltalake-core = { version = "0.23.0", path = "../core" }
deltalake-aws = { version = "0.6.0", path = "../aws", default-features = false, optional = true }
deltalake-azure = { version = "0.6.0", path = "../azure", optional = true }
deltalake-gcp = { version = "0.7.0", path = "../gcp", optional = true }
deltalake-hdfs = { version = "0.7.0", path = "../hdfs", optional = true }
deltalake-lakefs = { version = "0.6.0", path = "../lakefs", optional = true }
deltalake-catalog-glue = { version = "0.7.0", path = "../catalog-glue", optional = true }
deltalake-catalog-unity = { version = "0.7.0", path = "../catalog-unity", optional = true }
deltalake-core = { version = "0.24.0", path = "../core" }
deltalake-aws = { version = "0.7.0", path = "../aws", default-features = false, optional = true }
deltalake-azure = { version = "0.7.0", path = "../azure", optional = true }
deltalake-gcp = { version = "0.8.0", path = "../gcp", optional = true }
deltalake-hdfs = { version = "0.8.0", path = "../hdfs", optional = true }
deltalake-lakefs = { version = "0.7.0", path = "../lakefs", optional = true }
deltalake-catalog-glue = { version = "0.8.0", path = "../catalog-glue", optional = true }
deltalake-catalog-unity = { version = "0.8.0", path = "../catalog-unity", optional = true }


[features]
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.7.0"
version = "0.8.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.23.0", path = "../core" }
deltalake-core = { version = "0.24.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.7.0"
version = "0.8.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.23.0", path = "../core" }
deltalake-core = { version = "0.24.0", path = "../core" }
hdfs-native-object-store = "0.12"

# workspace dependecies
Expand Down
6 changes: 3 additions & 3 deletions crates/lakefs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-lakefs"
version = "0.6.0"
version = "0.7.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.23.0", path = "../core" }
deltalake-core = { version = "0.24.0", path = "../core" }
# workspace dependencies
async-trait = { workspace = true }
bytes = { workspace = true }
Expand Down Expand Up @@ -44,4 +44,4 @@ maplit = "1"
mockito = { version = "1.6.1"}

[features]
integration_test_lakefs = []
integration_test_lakefs = []
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.7.0"
version = "0.8.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.23.0", path = "../core", features = [
deltalake-core = { version = "0.24.0", path = "../core", features = [
"datafusion",
] }
lazy_static = "1"
Expand Down
4 changes: 2 additions & 2 deletions crates/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "deltalake-test"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
publish = false

[dependencies]
bytes = { workspace = true }
chrono = { workspace = true, default-features = false, features = ["clock"] }
deltalake-core = { version = "0.23.0", path = "../core" }
deltalake-core = { version = "0.24.0", path = "../core" }
dotenvy = "0"
fs_extra = "1.3.0"
futures = { version = "0.3" }
Expand Down

0 comments on commit af3102e

Please sign in to comment.