@@ -27,14 +27,29 @@ Please feel free to contribute new functionality! A roadmap can be found [here](
27
27
28
28
``` toml
29
29
[dependencies ]
30
- ndarray = " 0.13 "
31
- ndarray-stats = " 0.3 "
30
+ ndarray = " 0.14 "
31
+ ndarray-stats = " 0.4 "
32
32
```
33
33
34
34
## Releases
35
35
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
+
36
49
* ** 0.3.0**
37
50
51
+ * Breaking changes
52
+ * Minimum supported Rust version: ` 1.37 `
38
53
* New functionality:
39
54
* Deviation functions:
40
55
* Counts equal/unequal
@@ -46,12 +61,15 @@ ndarray-stats = "0.3"
46
61
* Weighted mean
47
62
* Improvements / breaking changes:
48
63
* Updated to ` ndarray:v0.13.0 `
49
- * Minimum supported Rust version: ` 1.37 `
50
64
51
65
* Contributors* : [ @munckymagik ] ( https://github.com/munckymagik ) , [ @nilgoyette ] ( https://github.com/nilgoyette ) , [ @jturner314 ] ( https://github.com/jturner314 ) , [ @LukeMathWalker ] ( https://github.com/LukeMathWalker )
52
66
53
67
* ** 0.2.0**
54
68
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 `
55
73
* New functionality:
56
74
* Summary statistics:
57
75
* Harmonic mean
@@ -69,10 +87,6 @@ ndarray-stats = "0.3"
69
87
* Optimized bulk quantile computation (` quantiles_mut ` , ` quantiles_axis_mut ` )
70
88
* Fixes:
71
89
* 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 ] )
76
90
77
91
* Contributors* : [ @jturner314 ] ( https://github.com/jturner314 ) , [ @LukeMathWalker ] ( https://github.com/LukeMathWalker ) , [ @phungleson ] ( https://github.com/phungleson ) , [ @munckymagik ] ( https://github.com/munckymagik )
78
92
0 commit comments