Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [v0.18.1](https://github.com/delta-io/delta-kernel-rs/tree/v0.18.1/) (2025-11-22)

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


### 🚀 Features / new APIs

1. Scan::execute no longer requires lifetime bound ([#1515])
2. Migrate protocol validation to table_configuration ([#1411])
3. Add Display for StructType, StructField, and MetadataColumnSpec ([#1494])
5. Add EngineDataArrowExt and use it everywhere ([#1516])
6. Implement builder for StructType ([#1492])
7. Enable CDF for column-mapped tables ([#1510])

### 🧪 Testing

1. Extract File Action tests ([#1365])


[#1515]: https://github.com/delta-io/delta-kernel-rs/pull/1515
[#1365]: https://github.com/delta-io/delta-kernel-rs/pull/1365
[#1411]: https://github.com/delta-io/delta-kernel-rs/pull/1411
[#1494]: https://github.com/delta-io/delta-kernel-rs/pull/1494
[#1516]: https://github.com/delta-io/delta-kernel-rs/pull/1516
[#1492]: https://github.com/delta-io/delta-kernel-rs/pull/1492
[#1510]: https://github.com/delta-io/delta-kernel-rs/pull/1510


## [v0.18.0](https://github.com/delta-io/delta-kernel-rs/tree/v0.18.0/) (2025-11-19)

[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.17.1...v0.18.0)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ license = "Apache-2.0"
repository = "https://github.com/delta-io/delta-kernel-rs"
readme = "README.md"
rust-version = "1.85"
version = "0.18.0"
version = "0.18.1"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ consumer's own `Engine` trait, the kernel has a feature flag to enable a default
```toml
# fewer dependencies, requires consumer to implement Engine trait.
# allows consumers to implement their own in-memory format
delta_kernel = "0.18.0"
delta_kernel = "0.18.1"

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

### Feature flags
Expand Down
2 changes: 1 addition & 1 deletion ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ url = "2"
delta_kernel = { path = "../kernel", default-features = false, features = [
"internal-api",
] }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.18.0" }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.18.1" }

[build-dependencies]
cbindgen = "0.29.2"
Expand Down
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pre-release-hook = [
]

[dependencies]
delta_kernel_derive = { path = "../derive-macros", version = "0.18.0" }
delta_kernel_derive = { path = "../derive-macros", version = "0.18.1" }
bytes = "1.10"
chrono = "0.4.41"
crc = "3.2.2"
Expand Down
Loading