From 7196b90f7c0494b040285d6c4c56bda43e3ce3e8 Mon Sep 17 00:00:00 2001 From: xd009642 Date: Wed, 9 Dec 2020 11:59:21 +0400 Subject: [PATCH 1/2] Update changelog --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 607bc280..d52c4266 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,24 @@ Please feel free to contribute new functionality! A roadmap can be found [here]( ```toml [dependencies] -ndarray = "0.13" -ndarray-stats = "0.3" +ndarray = "0.14" +ndarray-stats = "0.4" ``` ## Releases +* **0.4.0** + * New functionality: + * Summary statistics: + * Weighted variance + * Weighted standard deviation + * Improvements / breaking changes: + * Documentation improvements for Histograms + * Updated to `ndarray:v0.14.0` + * Minimum supported Rust version: `1.42.0` + + *Contributors*: [@munckymagik](https://github.com/munckymagik), [@nilgoyette](https://github.com/nilgoyette), [@LukeMathWalker](https://github.com/LukeMathWalker), [@lebensterben](https://github.com/lebensterben), [@xd009642](https://github.com/xd009642) + * **0.3.0** * New functionality: From 506bd55dca95abf5b839bc9cc832d0a20cdedc80 Mon Sep 17 00:00:00 2001 From: xd009642 Date: Mon, 14 Dec 2020 10:30:56 +0400 Subject: [PATCH 2/2] Move breaking changes to more prominent place --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d52c4266..fcbe51fb 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ ndarray-stats = "0.4" ## Releases * **0.4.0** + * Breaking changes + * Minimum supported Rust version: `1.42.0` * New functionality: * Summary statistics: * Weighted variance @@ -41,12 +43,13 @@ ndarray-stats = "0.4" * Improvements / breaking changes: * Documentation improvements for Histograms * Updated to `ndarray:v0.14.0` - * Minimum supported Rust version: `1.42.0` *Contributors*: [@munckymagik](https://github.com/munckymagik), [@nilgoyette](https://github.com/nilgoyette), [@LukeMathWalker](https://github.com/LukeMathWalker), [@lebensterben](https://github.com/lebensterben), [@xd009642](https://github.com/xd009642) * **0.3.0** + * Breaking changes + * Minimum supported Rust version: `1.37` * New functionality: * Deviation functions: * Counts equal/unequal @@ -58,12 +61,15 @@ ndarray-stats = "0.4" * Weighted mean * Improvements / breaking changes: * Updated to `ndarray:v0.13.0` - * Minimum supported Rust version: `1.37` *Contributors*: [@munckymagik](https://github.com/munckymagik), [@nilgoyette](https://github.com/nilgoyette), [@jturner314](https://github.com/jturner314), [@LukeMathWalker](https://github.com/LukeMathWalker) * **0.2.0** + * Breaking changes + * All `ndarray-stats`' extension traits are now impossible to implement by + users of the library (see [#34]) + * Redesigned error handling across the whole crate, standardising on `Result` * New functionality: * Summary statistics: * Harmonic mean @@ -81,10 +87,6 @@ ndarray-stats = "0.4" * Optimized bulk quantile computation (`quantiles_mut`, `quantiles_axis_mut`) * Fixes: * Reduced occurrences of overflow for `interpolate::midpoint` - * Improvements / breaking changes: - * Redesigned error handling across the whole crate, standardising on `Result` - * All `ndarray-stats`' extension traits are now impossible to implement by - users of the library (see [#34]) *Contributors*: [@jturner314](https://github.com/jturner314), [@LukeMathWalker](https://github.com/LukeMathWalker), [@phungleson](https://github.com/phungleson), [@munckymagik](https://github.com/munckymagik)