Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down