Skip to content

Commit d9f03f3

Browse files
committed
chore: bump version to 5.2.0
1 parent 87f4225 commit d9f03f3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kiddo"
3-
version = "5.1.0"
3+
version = "5.2.0"
44
edition = "2021"
55
authors = ["Scott Donnelly <scott@donnel.ly>"]
66
description = "A high-performance, flexible, ergonomic k-d tree library. Ideal for geo- and astro- nearest-neighbour and k-nearest-neighbor queries"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Kiddo provides:
2727
Add `kiddo` to `Cargo.toml`
2828
```toml
2929
[dependencies]
30-
kiddo = "5.1.0"
30+
kiddo = "5.2.0"
3131
```
3232

3333
Add points to k-d tree and query nearest n points with distance function

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#![warn(missing_docs)]
44
#![warn(rustdoc::broken_intra_doc_links)]
55
#![warn(rustdoc::private_intra_doc_links)]
6-
#![doc(html_root_url = "https://docs.rs/kiddo/5.1.0")]
6+
#![doc(html_root_url = "https://docs.rs/kiddo/5.2.0")]
77
#![doc(issue_tracker_base_url = "https://github.com/sdd/kiddo/issues/")]
88

99
//! # Kiddo
@@ -35,7 +35,7 @@
3535
//! Add `kiddo` to `Cargo.toml`
3636
//! ```toml
3737
//! [dependencies]
38-
//! kiddo = "5.1.0"
38+
//! kiddo = "5.2.0"
3939
//! ```
4040
//!
4141
//! ## Usage

0 commit comments

Comments
 (0)