Skip to content

Commit ba5e1e3

Browse files
1 parent 3bcd274 commit ba5e1e3

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## [v0.18.1](https://github.com/delta-io/delta-kernel-rs/tree/v0.18.1/) (2025-11-24)
4+
5+
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.18.0...v0.18.1)
6+
7+
8+
### 🚀 Features / new APIs
9+
10+
1. Scan::execute no longer requires lifetime bound ([#1515])
11+
2. Migrate protocol validation to table_configuration ([#1411])
12+
3. Add Display for StructType, StructField, and MetadataColumnSpec ([#1494])
13+
5. Add EngineDataArrowExt and use it everywhere ([#1516])
14+
6. Implement builder for StructType ([#1492])
15+
7. Enable CDF for column-mapped tables ([#1510])
16+
17+
### 🧪 Testing
18+
19+
1. Extract File Action tests ([#1365])
20+
21+
22+
[#1515]: https://github.com/delta-io/delta-kernel-rs/pull/1515
23+
[#1365]: https://github.com/delta-io/delta-kernel-rs/pull/1365
24+
[#1411]: https://github.com/delta-io/delta-kernel-rs/pull/1411
25+
[#1494]: https://github.com/delta-io/delta-kernel-rs/pull/1494
26+
[#1516]: https://github.com/delta-io/delta-kernel-rs/pull/1516
27+
[#1492]: https://github.com/delta-io/delta-kernel-rs/pull/1492
28+
[#1510]: https://github.com/delta-io/delta-kernel-rs/pull/1510
29+
30+
331
## [v0.18.0](https://github.com/delta-io/delta-kernel-rs/tree/v0.18.0/) (2025-11-19)
432

533
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.17.1...v0.18.0)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ license = "Apache-2.0"
2727
repository = "https://github.com/delta-io/delta-kernel-rs"
2828
readme = "README.md"
2929
rust-version = "1.85"
30-
version = "0.18.0"
30+
version = "0.18.1"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ consumer's own `Engine` trait, the kernel has a feature flag to enable a default
5252
```toml
5353
# fewer dependencies, requires consumer to implement Engine trait.
5454
# allows consumers to implement their own in-memory format
55-
delta_kernel = "0.18.0"
55+
delta_kernel = "0.18.1"
5656

5757
# or turn on the default engine, based on latest arrow
58-
delta_kernel = { version = "0.18.0", features = ["default-engine", "arrow"] }
58+
delta_kernel = { version = "0.18.1", features = ["default-engine", "arrow"] }
5959
```
6060

6161
### Feature flags

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ url = "2"
2525
delta_kernel = { path = "../kernel", default-features = false, features = [
2626
"internal-api",
2727
] }
28-
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.18.0" }
28+
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.18.1" }
2929

3030
[build-dependencies]
3131
cbindgen = "0.29.2"

kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pre-release-hook = [
3939
]
4040

4141
[dependencies]
42-
delta_kernel_derive = { path = "../derive-macros", version = "0.18.0" }
42+
delta_kernel_derive = { path = "../derive-macros", version = "0.18.1" }
4343
bytes = "1.10"
4444
chrono = "0.4.41"
4545
crc = "3.2.2"

0 commit comments

Comments
 (0)