diff --git a/Cargo.toml b/Cargo.toml index 49b6d7a..963da7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kdtree-ray" -version = "1.2.0" +version = "1.2.1" authors = ["Florian Amsallem "] description = "Fast Kdtree implementation for raytracer" documentation = "https://docs.rs/kdtree-ray" diff --git a/README.md b/README.md index f209d5f..ac1f9ce 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ To install it, just add the dependency in your `Cargo.toml`. ```toml [dependencies] -kdtree-ray="1.2.0" +kdtree-ray="1.2.1" ``` ### Usage diff --git a/src/lib.rs b/src/lib.rs index b59f5ba..72ff065 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! //! ```toml //! [dependencies] -//! kdtree-ray="1.2.0" +//! kdtree-ray="1.2.1" //! ``` //! //! # Usage & Tips