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 @@ [email protected] X X X
168168
169169
170170
171-
172-
171+
172+
173173
174174
175175
@@ -256,7 +256,7 @@ [email protected] X X
256256
257257
258258
259-
259+
260260
261261
262262

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 @@ [email protected] X X
3131
3232
3333
34-
aws-sdk-glue@1.94.0 X
34+
aws-sdk-glue@1.97.0 X
3535
3636
3737
@@ -140,10 +140,9 @@ [email protected] X X X
140140
141141
142142
143-
144-
145-
146-
143+
144+
145+
147146
148147
149148
@@ -325,7 +324,7 @@ [email protected] X X
325324
326325
327326
328-
uuid@1.16.0 X X
327+
uuid@1.17.0 X X
329328
330329
331330

crates/catalog/hms/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ [email protected] X X X
114114
115115
116116
117-
118-
119-
120-
117+
118+
119+
121120
122121
123122
@@ -311,7 +310,7 @@ [email protected] X
311310
312311
313312
314-
uuid@1.16.0 X X
313+
uuid@1.17.0 X X
315314
316315
317316

crates/catalog/memory/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ [email protected] X X X
106106
107107
108108
109-
110-
111-
109+
110+
111+
112112
113113
114114
@@ -270,7 +270,7 @@ [email protected] X
270270
271271
272272
273-
uuid@1.16.0 X X
273+
uuid@1.17.0 X X
274274
275275
276276
[email protected]+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 @@ [email protected] X X X
110110
111111
112112
113-
114-
115-
116-
113+
114+
115+
117116
118117
119118
@@ -276,7 +275,7 @@ [email protected] X
276275
277276
278277
279-
uuid@1.16.0 X X
278+
uuid@1.17.0 X X
280279
281280
282281
[email protected]+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 @@ [email protected] X X
3131
3232
3333
34-
aws-sdk-s3tables@1.20.0 X
34+
aws-sdk-s3tables@1.22.0 X
3535
3636
3737
@@ -140,10 +140,9 @@ [email protected] X X X
140140
141141
142142
143-
144-
145-
146-
143+
144+
145+
147146
148147
149148
@@ -325,7 +324,7 @@ [email protected] X X
325324
326325
327326
328-
uuid@1.16.0 X X
327+
uuid@1.17.0 X X
329328
330329
331330

crates/catalog/sql/DEPENDENCIES.rust.tsv

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ [email protected] X X X
114114
115115
116116
117-
118-
119-
120-
117+
118+
119+
121120
122121
123122
@@ -288,7 +287,7 @@ [email protected] X
288287
289288
290289
291-
uuid@1.16.0 X X
290+
uuid@1.17.0 X X
292291
293292
294293

0 commit comments

Comments
 (0)