Skip to content

Commit 75b9fba

Browse files
committed
release 0.5.0
1 parent fe5f78b commit 75b9fba

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion-iceberg-sql/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datafusion-iceberg-sql"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55

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

1212
[dependencies]
13-
iceberg-rust = { path = "../iceberg-rust", version = "0.4.0" }
13+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.0" }
1414
datafusion-sql.workspace = true
1515
datafusion-expr.workspace = true
1616
datafusion-common.workspace = true

datafusion_iceberg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datafusion_iceberg"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
description = "Datafusion integration for Iceberg table format"
@@ -18,7 +18,7 @@ datafusion = { workspace = true }
1818
datafusion-expr = { workspace = true }
1919
chrono = { workspace = true }
2020
object_store = { workspace = true }
21-
iceberg-rust = { path = "../iceberg-rust", version = "0.4.0" }
21+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.0" }
2222
itertools = { workspace = true }
2323
dashmap = "5.4.0"
2424
uuid = { workspace = true }

iceberg-rest-catalog/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rest-catalog"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Jan Kaul"]
55
description = "REST catalog for the unofficial Iceberg table format implementation"
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ serde_json.workspace = true
1414
url.workspace = true
1515
uuid.workspace = true
1616
reqwest-middleware = "0.2.0"
17-
iceberg-rust = { path = "../iceberg-rust", version = "0.4.0" }
17+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.0" }
1818
object_store.workspace = true
1919
async-trait = "0.1.80"
2020
futures.workspace = true

iceberg-rust-spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rust-spec"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
license = "Apache-2.0"

iceberg-rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rust"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
description = "Unofficial rust implementation of the Iceberg table format"
@@ -29,5 +29,5 @@ sqlparser = { workspace = true }
2929
thrift = { version = "0.17.0", default-features = false }
3030
thiserror = { workspace = true }
3131
derive-getters = { workspace = true }
32-
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.4.0" }
32+
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.5.0" }
3333

iceberg-sql-catalog/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-sql-catalog"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
description = "Sql catalog for the unofficial Iceberg table format implementation"
@@ -13,7 +13,7 @@ repository = "https://github.com/JanKaul/iceberg-rust"
1313
async-trait.workspace = true
1414
dashmap = "5.5.3"
1515
futures.workspace = true
16-
iceberg-rust = { path = "../iceberg-rust", version = "0.4.0" }
16+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.0" }
1717
object_store.workspace = true
1818
serde_json.workspace = true
1919
sqlx = { version = "0.7.4", features = ["tls-rustls", "any", "sqlite", "postgres", "mysql"], default-features = false }

0 commit comments

Comments
 (0)