Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.0 #101

Merged
merged 2 commits into from
Aug 24, 2024
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-stats"
version = "0.5.1"
version = "0.6.0"
authors = ["Jim Turner <[email protected]>", "LukeMathWalker <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2018 ndarray-stats developers
Copyright 2018–2024 ndarray-stats developers

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,25 @@ Please feel free to contribute new functionality! A roadmap can be found [here](

```toml
[dependencies]
ndarray = "0.15"
ndarray-stats = "0.5.1"
ndarray = "0.16"
ndarray-stats = "0.6.0"
```

## Releases

* **0.6.0**

* Breaking changes
* Minimum supported Rust version: `1.64.0`
* Updated to `ndarray:v0.16.0`
* Updated to `approx:v0.5.0`

* Updated to `ndarray-rand:v0.15.0`
* Updated to `indexmap:v2.4`
* Updated to `itertools:v0.13`

*Contributors*: [@bluss](https://github.com/bluss)

* **0.5.1**
* Fixed bug in implementation of `MaybeNaN::remove_nan_mut` for `f32` and
`f64` for views with non-standard layouts. Before this fix, the bug could
Expand Down Expand Up @@ -118,7 +131,7 @@ Please feel free to create issues and submit PRs.

## License

Copyright 2018–2022 `ndarray-stats` developers
Copyright 2018–2024 `ndarray-stats` developers

Licensed under the [Apache License, Version 2.0](LICENSE-APACHE), or the [MIT
license](LICENSE-MIT), at your option. You may not use this project except in
Expand Down
Loading