diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dd7e66..2722b11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixes - Fix `Geometric::new` for small `p > 0` where `1 - p` rounds to 1 (#36) +- Use `direct-minimal-versions` (#38) - Fix panic in `FisherF::new` on almost zero parameters (#39) ## [0.5.2] diff --git a/README.md b/README.md index 32023ff..d57bd97 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ can be enabled. (Note that any other crate depending on `num-traits` with the [statrs]: https://github.com/statrs-dev/statrs -[rand::distr]: https://rust-random.github.io/rand/rand/distr/index.html +[rand::distr]: https://docs.rs/rand/latest/rand/distr/index.html ## Old Issues and Pull Requests diff --git a/src/lib.rs b/src/lib.rs index dfa5e7d..a9e50a0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,8 +8,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", - html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://rust-random.github.io/rand/" + html_favicon_url = "https://www.rust-lang.org/favicon.ico" )] #![forbid(unsafe_code)] #![deny(missing_docs)]