Skip to content

Commit fe01172

Browse files
chore: sync 0.17.1 release (#1474)
## What changes are proposed in this pull request? Cherry pick of - #1473
1 parent 478184f commit fe01172

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

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

3+
## [v0.17.1](https://github.com/delta-io/delta-kernel-rs/tree/v0.17.1/) (2025-11-13)
4+
5+
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.17.0...v0.17.1)
6+
7+
8+
### 📚 Documentation
9+
10+
1. Fix docs for rustc 1.92+ ([#1470])
11+
12+
13+
[#1470]: https://github.com/delta-io/delta-kernel-rs/pull/1470
14+
15+
316
## [v0.17.0](https://github.com/delta-io/delta-kernel-rs/tree/v0.17.0/) (2025-11-10)
417

518
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.16.0...v0.17.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.17.0"
30+
version = "0.17.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.17.0"
55+
delta_kernel = "0.17.1"
5656

5757
# or turn on the default engine, based on latest arrow
58-
delta_kernel = { version = "0.17.0", features = ["default-engine", "arrow"] }
58+
delta_kernel = { version = "0.17.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.17.0" }
28+
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.17.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.17.0" }
42+
delta_kernel_derive = { path = "../derive-macros", version = "0.17.1" }
4343
bytes = "1.10"
4444
chrono = "0.4.41"
4545
crc = "3.2.2"

0 commit comments

Comments
 (0)