Skip to content

Commit

Permalink
version 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed Aug 7, 2024
1 parent e7dafb3 commit b99b980
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

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.5.2"
version = "0.5.3"
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.5.2" }
iceberg-rust = { path = "../iceberg-rust", version = "0.5.3" }
datafusion-sql.workspace = true
datafusion-expr.workspace = true
datafusion-common.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions datafusion-iceberg-sql/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ impl ContextProvider for IcebergContext {
}

fn udf_names(&self) -> Vec<String> {
todo!()
Vec::new()
}

fn udaf_names(&self) -> Vec<String> {
todo!()
Vec::new()
}

fn udwf_names(&self) -> Vec<String> {
todo!()
Vec::new()
}
}
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.5.2"
version = "0.5.3"
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.5.2" }
iceberg-rust = { path = "../iceberg-rust", version = "0.5.3" }
itertools = { workspace = true }
dashmap = "5.4.0"
uuid = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions 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.5.2"
version = "0.5.3"
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.5.2" }
iceberg-rust = { path = "../iceberg-rust", version = "0.5.3" }
object_store.workspace = true
async-trait = "0.1.80"
futures.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.5.2"
version = "0.5.3"
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.5.2"
version = "0.5.3"
edition = "2021"

description = "Unofficial rust implementation of the Iceberg table format"
Expand Down Expand Up @@ -29,5 +29,5 @@ 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.5.2" }
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.5.3" }

4 changes: 2 additions & 2 deletions 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.5.2"
version = "0.5.3"
edition = "2021"

description = "Sql 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.5.2" }
iceberg-rust = { path = "../iceberg-rust", version = "0.5.3" }
object_store.workspace = true
serde_json.workspace = true
sqlx = { version = "0.8", features = ["tls-rustls", "any", "sqlite", "postgres", "mysql"], default-features = false }
Expand Down

0 comments on commit b99b980

Please sign in to comment.