Skip to content

Commit

Permalink
release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed Dec 10, 2024
1 parent a04dc5f commit b0cc54c
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 29 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions catalogs/iceberg-file-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-file-catalog"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Filesystem catalog for the unofficial Iceberg table format implementation"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/JanKaul/iceberg-rust"
[dependencies]
async-trait.workspace = true
futures.workspace = true
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.1" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -23,5 +23,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.0" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.1" }
datafusion.workspace = true
6 changes: 3 additions & 3 deletions catalogs/iceberg-glue-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-glue-catalog"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Glue catalog for the unofficial Iceberg table format implementation"
Expand All @@ -14,7 +14,7 @@ async-trait.workspace = true
aws-config = "1.5.9"
aws-sdk-glue = "1.68.0"
futures.workspace = true
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.1" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -25,5 +25,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.0" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.1" }
datafusion.workspace = true
4 changes: 2 additions & 2 deletions catalogs/iceberg-rest-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-rest-catalog"
version = "0.6.0"
version = "0.6.1"
authors = ["Jan Kaul"]
description = "REST catalog for the unofficial Iceberg table format implementation"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ serde_json.workspace = true
url.workspace = true
uuid.workspace = true
reqwest-middleware = "0.2.0"
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.1" }
object_store.workspace = true
async-trait.workspace = true
futures.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions catalogs/iceberg-s3tables-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-s3tables-catalog"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "S3Tables catalog for the unofficial Iceberg table format implementation"
Expand All @@ -14,7 +14,7 @@ async-trait.workspace = true
aws-config = "1.5.9"
aws-sdk-s3tables = "1.0.0"
futures.workspace = true
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.1" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -25,5 +25,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.0" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.6.1" }
datafusion.workspace = true
4 changes: 2 additions & 2 deletions catalogs/iceberg-sql-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-sql-catalog"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Sql catalog for the unofficial Iceberg table format implementation"
Expand All @@ -17,7 +17,7 @@ runtime-async-std = ["sqlx/runtime-async-std"]
[dependencies]
async-trait.workspace = true
futures.workspace = true
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.6.1" }
object_store.workspace = true
serde_json.workspace = true
sqlx = { version = "0.8", features = ["tls-rustls", "any", "sqlite", "postgres", "mysql"], default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions datafusion-iceberg-sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datafusion-iceberg-sql"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Apache Iceberg integration for Datafusion"
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"
repository = "https://github.com/JanKaul/iceberg-rust"

[dependencies]
iceberg-rust = { path = "../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../iceberg-rust", version = "0.6.1" }
datafusion-sql.workspace = true
datafusion-expr.workspace = true
datafusion-common.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions datafusion_iceberg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datafusion_iceberg"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Datafusion integration for Iceberg table format"
Expand All @@ -18,7 +18,7 @@ datafusion = { workspace = true }
datafusion-expr = { workspace = true }
chrono = { workspace = true }
object_store = { workspace = true }
iceberg-rust = { path = "../iceberg-rust", version = "0.6.0" }
iceberg-rust = { path = "../iceberg-rust", version = "0.6.1" }
itertools = { workspace = true }
dashmap = "5.4.0"
uuid = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion iceberg-rust-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-rust-spec"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions iceberg-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iceberg-rust"
version = "0.6.0"
version = "0.6.1"
edition = "2021"

description = "Unofficial rust implementation of the Iceberg table format"
Expand Down Expand Up @@ -29,7 +29,7 @@ sqlparser = { workspace = true }
thrift = { version = "0.17.0", default-features = false }
thiserror = { workspace = true }
derive-getters = { workspace = true }
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.6.0" }
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.6.1" }
smallvec = { version = "1.13.2", features = ["const_generics"] }

[dev-dependencies]
Expand Down

0 comments on commit b0cc54c

Please sign in to comment.