Skip to content

Commit

Permalink
release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zachschuermann committed Nov 27, 2024
1 parent 2c91040 commit 340a537
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@

## unreleased

[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.4.0...HEAD)
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.5.0...HEAD)

**API Changes**

*Breaking*

*Additions*

**Implemented enhancements:**

**Fixed bugs:**


## [v0.5.0](https://github.com/delta-io/delta-kernel-rs/tree/v0.5.0/) (2024-11-26)

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

**API Changes**

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ license = "Apache-2.0"
repository = "https://github.com/delta-io/delta-kernel-rs"
readme = "README.md"
rust-version = "1.80"
version = "0.4.0"
version = "0.5.0"

[workspace.dependencies]
arrow = { version = ">=53, <54" }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ asynchronous `Engine` implementation built with [Arrow] and [Tokio].
```toml
# fewer dependencies, requires consumer to implement Engine trait.
# allows consumers to implement their own in-memory format
delta_kernel = "0.4"
delta_kernel = "0.5"

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

### 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 @@ -19,7 +19,7 @@ url = "2"
delta_kernel = { path = "../kernel", default-features = false, features = [
"developer-visibility",
] }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.4.0" }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.5.0" }

# used if we use the default engine to be able to move arrow data into the c-ffi format
arrow-schema = { version = "53.0", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ uuid = "1.10.0"
z85 = "3.0.5"

# bring in our derive macros
delta_kernel_derive = { path = "../derive-macros", version = "0.4.0" }
delta_kernel_derive = { path = "../derive-macros", version = "0.5.0" }

# used for developer-visibility
visibility = "0.1.1"
Expand Down

0 comments on commit 340a537

Please sign in to comment.