From 465e7070c438d827fe45b73409277b28bcf64b3b Mon Sep 17 00:00:00 2001 From: Min Shao Date: Wed, 7 Aug 2024 12:11:05 -0700 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48f11af..f6a35af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,12 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.11.0] - 2024-08-07 ### Changed - Requires Rust 1.74 or newer. +- Updated ndarray to 0.16. ## [0.10.0] - 2023-12-20 @@ -125,7 +126,7 @@ Versioning](https://semver.org/spec/v2.0.0.html). - A ball tree data structure to find nearest neighbors. -[Unreleased]: https://github.com/petabi/petal-neighbors/compare/0.10.0...main +[0.11.0]: https://github.com/petabi/petal-neighbors/compare/0.10.0...0.11.0 [0.10.0]: https://github.com/petabi/petal-neighbors/compare/0.9.0...0.10.0 [0.9.0]: https://github.com/petabi/petal-neighbors/compare/0.8.0...0.9.0 [0.8.0]: https://github.com/petabi/petal-neighbors/compare/0.7.1...0.8.0 diff --git a/Cargo.toml b/Cargo.toml index 69a2047..d4e7167 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "petal-neighbors" -version = "0.10.0" +version = "0.11.0" edition = "2021" rust-version = "1.74" description = "Nearest neighbor search algorithms including a ball tree and a vantage point tree."