diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d03e49..79bf56e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ +## v0.9.2 (2024-09-20) + +### New Features + + - support `arrow` conversion of `LogicalArray` to `GenericListArray` + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 8 days passed between releases. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 1 unique issue was worked on: [#251](https://github.com/mbrobbel/narrow/issues/251) + +### Commit Details + + + +
view details + + * **[#251](https://github.com/mbrobbel/narrow/issues/251)** + - Support `arrow` conversion of `LogicalArray` to `GenericListArray` ([`bc0a611`](https://github.com/mbrobbel/narrow/commit/bc0a6114eba19f7b2d0ff23858521cf01b879362)) +
+ ## v0.9.1 (2024-09-12) ### New Features diff --git a/Cargo.lock b/Cargo.lock index 7ce3b35..ebd63b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -644,7 +644,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "narrow" -version = "0.9.1" +version = "0.9.2" dependencies = [ "arrow-array", "arrow-buffer", diff --git a/Cargo.toml b/Cargo.toml index fd71fdd..efd9b2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = ["narrow-derive"] [package] name = "narrow" -version = "0.9.1" +version = "0.9.2" authors.workspace = true edition.workspace = true rust-version.workspace = true