@@ -27,14 +27,29 @@ Please feel free to contribute new functionality! A roadmap can be found [here](
2727
2828``` toml
2929[dependencies ]
30- ndarray = " 0.13 "
31- ndarray-stats = " 0.3 "
30+ ndarray = " 0.14 "
31+ ndarray-stats = " 0.4 "
3232```
3333
3434## Releases
3535
36+ * ** 0.4.0**
37+ * Breaking changes
38+ * Minimum supported Rust version: ` 1.42.0 `
39+ * New functionality:
40+ * Summary statistics:
41+ * Weighted variance
42+ * Weighted standard deviation
43+ * Improvements / breaking changes:
44+ * Documentation improvements for Histograms
45+ * Updated to ` ndarray:v0.14.0 `
46+
47+ * 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 )
48+
3649* ** 0.3.0**
3750
51+ * Breaking changes
52+ * Minimum supported Rust version: ` 1.37 `
3853 * New functionality:
3954 * Deviation functions:
4055 * Counts equal/unequal
@@ -46,12 +61,15 @@ ndarray-stats = "0.3"
4661 * Weighted mean
4762 * Improvements / breaking changes:
4863 * Updated to ` ndarray:v0.13.0 `
49- * Minimum supported Rust version: ` 1.37 `
5064
5165 * Contributors* : [ @munckymagik ] ( https://github.com/munckymagik ) , [ @nilgoyette ] ( https://github.com/nilgoyette ) , [ @jturner314 ] ( https://github.com/jturner314 ) , [ @LukeMathWalker ] ( https://github.com/LukeMathWalker )
5266
5367* ** 0.2.0**
5468
69+ * Breaking changes
70+ * All ` ndarray-stats ` ' extension traits are now impossible to implement by
71+ users of the library (see [ #34 ] )
72+ * Redesigned error handling across the whole crate, standardising on ` Result `
5573 * New functionality:
5674 * Summary statistics:
5775 * Harmonic mean
@@ -69,10 +87,6 @@ ndarray-stats = "0.3"
6987 * Optimized bulk quantile computation (` quantiles_mut ` , ` quantiles_axis_mut ` )
7088 * Fixes:
7189 * Reduced occurrences of overflow for ` interpolate::midpoint `
72- * Improvements / breaking changes:
73- * Redesigned error handling across the whole crate, standardising on ` Result `
74- * All ` ndarray-stats ` ' extension traits are now impossible to implement by
75- users of the library (see [ #34 ] )
7690
7791 * Contributors* : [ @jturner314 ] ( https://github.com/jturner314 ) , [ @LukeMathWalker ] ( https://github.com/LukeMathWalker ) , [ @phungleson ] ( https://github.com/phungleson ) , [ @munckymagik ] ( https://github.com/munckymagik )
7892
0 commit comments