From eb02a0e8ac5ae917f58cb99958a004bffc0889d4 Mon Sep 17 00:00:00 2001 From: "narrow-app[bot]" <188107253+narrow-app[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:21:35 +0000 Subject: [PATCH] chore: release v0.12.0 (#295) Co-authored-by: narrow-app[bot] <188107253+narrow-app[bot]@users.noreply.github.com> --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 3 files changed, 29 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 629db43..4384111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0](https://github.com/mbrobbel/narrow/compare/narrow-v0.11.5...narrow-v0.12.0) - 2025-01-08 + +### Added + +- [**breaking**] change nullability abstraction to use non-const generic (#294) + +### Fixed + +- restore `ArrayType` supertrait for `FixedSize` trait (#297) + +### Other + +- *(ci)* dependabot ignore `dtolnay/install` (#308) +- *(deps)* bump syn from 2.0.94 to 2.0.95 (#307) +- *(deps)* bump syn from 2.0.93 to 2.0.94 (#306) +- *(deps)* bump syn from 2.0.92 to 2.0.93 (#305) +- *(deps)* bump rustversion from 1.0.18 to 1.0.19 (#304) +- *(deps)* bump syn from 2.0.91 to 2.0.92 (#303) +- *(deps)* bump quote from 1.0.37 to 1.0.38 (#302) +- *(deps)* bump the arrow group with 5 updates (#300) +- *(deps)* bump syn from 2.0.90 to 2.0.91 (#301) +- *(deps)* bump MarcoIeni/release-plz-action from 0.5.85 to 0.5.86 (#298) +- *(deps)* bump chrono from 0.4.38 to 0.4.39 (#299) +- some small README improvements (#296) + ## [0.11.5](https://github.com/mbrobbel/narrow/compare/narrow-v0.11.4...narrow-v0.11.5) - 2024-12-02 ### Other diff --git a/Cargo.lock b/Cargo.lock index b7730d8..852f672 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -649,7 +649,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "narrow" -version = "0.11.5" +version = "0.12.0" dependencies = [ "arrow-array", "arrow-buffer", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "narrow-derive" -version = "0.11.5" +version = "0.12.0" dependencies = [ "macrotest", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 2730d6e..da7508f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.11.5" +version = "0.12.0" authors = ["Matthijs Brobbel "] edition = "2021" rust-version = "1.79.0" @@ -49,7 +49,7 @@ arrow-array = { version = "54.0.0", default-features = false, optional = true } arrow-buffer = { version = "54.0.0", default-features = false, optional = true } arrow-schema = { version = "54.0.0", default-features = false, optional = true } chrono = { version = "0.4.39", default-features = false, optional = true } -narrow-derive = { path = "narrow-derive", version = "0.11.5", optional = true } +narrow-derive = { path = "narrow-derive", version = "0.12.0", optional = true } uuid = { version = "1.11.0", default-features = false, optional = true } [dev-dependencies]