Skip to content

Commit 80feb07

Browse files
authored
Bump iceberg-rust version to 0.5.1 (#1380)
## Which issue does this PR close? - Related to #1325 ## What changes are included in this PR? Bump version to `0.5.1` Update `CHANGELOG.md` Generate dependencies list, `python3 ./scripts/dependencies.py generate` ## Are these changes tested?
1 parent 48433cb commit 80feb07

22 files changed

+96
-133
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
439439
* Add support for evolving a partition column by @Fokko in https://github.com/apache/iceberg-rust/pull/1334
440440
* Run dependency license check in release script by @kevinjqliu in https://github.com/apache/iceberg-rust/pull/1367
441441
* Make `dependencies.py` check all subdirectories for cargo toml files by @kevinjqliu in https://github.com/apache/iceberg-rust/pull/1370
442+
* add new commits to changelog for 0.5.0 by @kevinjqliu in https://github.com/apache/iceberg-rust/pull/1371
443+
* fix: add support for `Decimal` and `Uuid` datum conversion by @burmecia in https://github.com/apache/iceberg-rust/pull/1346
444+
* fix: check leaf column is root column in Parquet schema by @burmecia in https://github.com/apache/iceberg-rust/pull/1347
445+
* chore(deps): Bump aws-sdk-s3tables from 1.20.0 to 1.22.0 by @dependabot in https://github.com/apache/iceberg-rust/pull/1377
446+
* test: Add missing tests for update_namespace method in sql catalog by @kyteware in https://github.com/apache/iceberg-rust/pull/1373
447+
* chore(deps): Bump aws-sdk-glue from 1.94.0 to 1.97.0 by @dependabot in https://github.com/apache/iceberg-rust/pull/1376
448+
* chore(deps): Bump uuid from 1.16.0 to 1.17.0 by @dependabot in https://github.com/apache/iceberg-rust/pull/1375
449+
* fix 0.5.x release `cargo publish` by @kevinjqliu in https://github.com/apache/iceberg-rust/pull/1379
442450

443451
## [v0.4.0] - 2024-12-16
444452
* io: add support for role arn and external id s3 props by @mattheusv in https://github.com/apache/iceberg-rust/pull/553

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resolver = "2"
3131
[workspace.package]
3232
edition = "2024"
3333
homepage = "https://rust.iceberg.apache.org/"
34-
version = "0.5.0"
34+
version = "0.5.1"
3535

3636
license = "Apache-2.0"
3737
repository = "https://github.com/apache/iceberg-rust"
@@ -73,10 +73,10 @@ fs-err = "3.1.0"
7373
futures = "0.3"
7474
hive_metastore = "0.1"
7575
http = "1.2"
76-
iceberg = { version = "0.5.0", path = "./crates/iceberg" }
77-
iceberg-catalog-memory = { version = "0.5.0", path = "./crates/catalog/memory" }
78-
iceberg-catalog-rest = { version = "0.5.0", path = "./crates/catalog/rest" }
79-
iceberg-datafusion = { version = "0.5.0", path = "./crates/integrations/datafusion" }
76+
iceberg = { version = "0.5.1", path = "./crates/iceberg" }
77+
iceberg-catalog-memory = { version = "0.5.1", path = "./crates/catalog/memory" }
78+
iceberg-catalog-rest = { version = "0.5.1", path = "./crates/catalog/rest" }
79+
iceberg-datafusion = { version = "0.5.1", path = "./crates/integrations/datafusion" }
8080
indicatif = "0.17"
8181
itertools = "0.13"
8282
linkedbytes = "0.1.8"

bindings/python/Cargo.lock

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

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ edition = "2024"
2020
homepage = "https://rust.iceberg.apache.org"
2121
name = "pyiceberg_core_rust"
2222
rust-version = "1.85"
23-
version = "0.5.0"
23+
version = "0.5.1"
2424
# This crate is used to build python bindings, we don't want to publish it
2525
publish = false
2626

bindings/python/DEPENDENCIES.rust.tsv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ hyper-rustls@0.27.5 X X X
168168
hyper-util@0.1.11 X
169169
iana-time-zone@0.1.63 X X
170170
iana-time-zone-haiku@0.1.2 X X
171-
iceberg@0.5.0 X
172-
iceberg-datafusion@0.5.0 X
171+
iceberg@0.5.1 X
172+
iceberg-datafusion@0.5.1 X
173173
icu_collections@2.0.0 X
174174
icu_locale_core@2.0.0 X
175175
icu_normalizer@2.0.0 X
@@ -256,7 +256,7 @@ proc-macro2@1.0.95 X X
256256
prost@0.13.5 X
257257
prost-derive@0.13.5 X
258258
psm@0.1.26 X X
259-
pyiceberg_core_rust@0.5.0 X
259+
pyiceberg_core_rust@0.5.1 X
260260
pyo3@0.24.2 X X
261261
pyo3-build-config@0.24.2 X X
262262
pyo3-ffi@0.24.2 X X

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ classifiers = [
3333
name = "pyiceberg-core"
3434
readme = "project-description.md"
3535
requires-python = "~=3.9"
36-
version = "0.5.0"
36+
dynamic = ["version"]
3737

3838
[tool.maturin]
3939
features = ["pyo3/extension-module"]

crates/catalog/glue/DEPENDENCIES.rust.tsv

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ autocfg@1.4.0 X X
3131
aws-config@1.6.2 X
3232
aws-credential-types@1.2.3 X
3333
aws-runtime@1.5.7 X
34-
aws-sdk-glue@1.94.0 X
34+
aws-sdk-glue@1.97.0 X
3535
aws-sdk-sso@1.66.0 X
3636
aws-sdk-ssooidc@1.67.0 X
3737
aws-sdk-sts@1.67.0 X
@@ -140,10 +140,9 @@ hyper-rustls@0.27.5 X X X
140140
hyper-util@0.1.10 X
141141
iana-time-zone@0.1.61 X X
142142
iana-time-zone-haiku@0.1.2 X X
143-
iceberg@0.5.0 X
144-
iceberg-catalog-glue@0.5.0 X
145-
iceberg-catalog-memory@0.5.0 X
146-
iceberg_test_utils@0.5.0 X
143+
iceberg@0.5.1 X
144+
iceberg-catalog-glue@0.5.1 X
145+
iceberg_test_utils@0.5.1 X
147146
icu_collections@1.5.0 X
148147
icu_locid@1.5.0 X
149148
icu_locid_transform@1.5.0 X
@@ -325,7 +324,7 @@ url@2.5.4 X X
325324
urlencoding@2.1.3 X
326325
utf16_iter@1.0.5 X X
327326
utf8_iter@1.0.4 X X
328-
uuid@1.16.0 X X
327+
uuid@1.17.0 X X
329328
version_check@0.9.5 X X
330329
vsimd@0.8.0 X
331330
want@0.3.1 X

crates/catalog/hms/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ hyper-rustls@0.27.5 X X X
114114
hyper-util@0.1.10 X
115115
iana-time-zone@0.1.61 X X
116116
iana-time-zone-haiku@0.1.2 X X
117-
iceberg@0.5.0 X
118-
iceberg-catalog-hms@0.5.0 X
119-
iceberg-catalog-memory@0.5.0 X
120-
iceberg_test_utils@0.5.0 X
117+
iceberg@0.5.1 X
118+
iceberg-catalog-hms@0.5.1 X
119+
iceberg_test_utils@0.5.1 X
121120
icu_collections@1.5.0 X
122121
icu_locid@1.5.0 X
123122
icu_locid_transform@1.5.0 X
@@ -311,7 +310,7 @@ untrusted@0.9.0 X
311310
url@2.5.4 X X
312311
utf16_iter@1.0.5 X X
313312
utf8_iter@1.0.4 X X
314-
uuid@1.16.0 X X
313+
uuid@1.17.0 X X
315314
version_check@0.9.5 X X
316315
volo@0.10.6 X X
317316
volo-thrift@0.10.7 X X

crates/catalog/memory/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ hyper-rustls@0.27.5 X X X
106106
hyper-util@0.1.10 X
107107
iana-time-zone@0.1.61 X X
108108
iana-time-zone-haiku@0.1.2 X X
109-
iceberg@0.5.0 X
110-
iceberg-catalog-memory@0.5.0 X
111-
iceberg_test_utils@0.5.0 X
109+
iceberg@0.5.1 X
110+
iceberg-catalog-memory@0.5.1 X
111+
iceberg_test_utils@0.5.1 X
112112
icu_collections@1.5.0 X
113113
icu_locid@1.5.0 X
114114
icu_locid_transform@1.5.0 X
@@ -270,7 +270,7 @@ untrusted@0.9.0 X
270270
url@2.5.4 X X
271271
utf16_iter@1.0.5 X X
272272
utf8_iter@1.0.4 X X
273-
uuid@1.16.0 X X
273+
uuid@1.17.0 X X
274274
version_check@0.9.5 X X
275275
want@0.3.1 X
276276
wasi@0.11.0+wasi-snapshot-preview1 X X X

crates/catalog/rest/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,9 @@ hyper-rustls@0.27.5 X X X
110110
hyper-util@0.1.10 X
111111
iana-time-zone@0.1.61 X X
112112
iana-time-zone-haiku@0.1.2 X X
113-
iceberg@0.5.0 X
114-
iceberg-catalog-memory@0.5.0 X
115-
iceberg-catalog-rest@0.5.0 X
116-
iceberg_test_utils@0.5.0 X
113+
iceberg@0.5.1 X
114+
iceberg-catalog-rest@0.5.1 X
115+
iceberg_test_utils@0.5.1 X
117116
icu_collections@1.5.0 X
118117
icu_locid@1.5.0 X
119118
icu_locid_transform@1.5.0 X
@@ -276,7 +275,7 @@ untrusted@0.9.0 X
276275
url@2.5.4 X X
277276
utf16_iter@1.0.5 X X
278277
utf8_iter@1.0.4 X X
279-
uuid@1.16.0 X X
278+
uuid@1.17.0 X X
280279
version_check@0.9.5 X X
281280
want@0.3.1 X
282281
wasi@0.11.0+wasi-snapshot-preview1 X X X

crates/catalog/s3tables/DEPENDENCIES.rust.tsv

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ autocfg@1.4.0 X X
3131
aws-config@1.6.2 X
3232
aws-credential-types@1.2.3 X
3333
aws-runtime@1.5.7 X
34-
aws-sdk-s3tables@1.20.0 X
34+
aws-sdk-s3tables@1.22.0 X
3535
aws-sdk-sso@1.66.0 X
3636
aws-sdk-ssooidc@1.67.0 X
3737
aws-sdk-sts@1.67.0 X
@@ -140,10 +140,9 @@ hyper-rustls@0.27.5 X X X
140140
hyper-util@0.1.10 X
141141
iana-time-zone@0.1.61 X X
142142
iana-time-zone-haiku@0.1.2 X X
143-
iceberg@0.5.0 X
144-
iceberg-catalog-memory@0.5.0 X
145-
iceberg-catalog-s3tables@0.5.0 X
146-
iceberg_test_utils@0.5.0 X
143+
iceberg@0.5.1 X
144+
iceberg-catalog-s3tables@0.5.1 X
145+
iceberg_test_utils@0.5.1 X
147146
icu_collections@1.5.0 X
148147
icu_locid@1.5.0 X
149148
icu_locid_transform@1.5.0 X
@@ -325,7 +324,7 @@ url@2.5.4 X X
325324
urlencoding@2.1.3 X
326325
utf16_iter@1.0.5 X X
327326
utf8_iter@1.0.4 X X
328-
uuid@1.16.0 X X
327+
uuid@1.17.0 X X
329328
version_check@0.9.5 X X
330329
vsimd@0.8.0 X
331330
want@0.3.1 X

crates/catalog/sql/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ hyper-rustls@0.27.5 X X X
114114
hyper-util@0.1.10 X
115115
iana-time-zone@0.1.61 X X
116116
iana-time-zone-haiku@0.1.2 X X
117-
iceberg@0.5.0 X
118-
iceberg-catalog-memory@0.5.0 X
119-
iceberg-catalog-sql@0.5.0 X
120-
iceberg_test_utils@0.5.0 X
117+
iceberg@0.5.1 X
118+
iceberg-catalog-sql@0.5.1 X
119+
iceberg_test_utils@0.5.1 X
121120
icu_collections@1.5.0 X
122121
icu_locid@1.5.0 X
123122
icu_locid_transform@1.5.0 X
@@ -288,7 +287,7 @@ untrusted@0.9.0 X
288287
url@2.5.4 X X
289288
utf16_iter@1.0.5 X X
290289
utf8_iter@1.0.4 X X
291-
uuid@1.16.0 X X
290+
uuid@1.17.0 X X
292291
vcpkg@0.2.15 X X
293292
version_check@0.9.5 X X
294293
want@0.3.1 X

0 commit comments

Comments
 (0)