File tree 2 files changed +11
-2
lines changed 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " itertools"
3
- version = " 0.5.10 "
3
+ version = " 0.6.0 "
4
4
5
5
license = " MIT/Apache-2.0"
6
6
repository = " https://github.com/bluss/rust-itertools"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ How to use with cargo:
21
21
.. code :: toml
22
22
23
23
[dependencies]
24
- itertools = "0.5.9 "
24
+ itertools = "0.6.0 "
25
25
26
26
How to use in your crate:
27
27
@@ -41,6 +41,15 @@ How to contribute:
41
41
Recent Changes
42
42
--------------
43
43
44
+ - 0.6.0
45
+
46
+ - Deprecated names were removed in favour of their replacements
47
+ - ``.flatten() `` does not implement double ended iteration anymore
48
+ - ``.fold_while() `` uses ``&mut self `` and returns ``FoldWhile<T> ``, for
49
+ composability (#168)
50
+ - ``.foreach() `` and ``.fold1() `` use ``self ``, like ``.fold() `` does.
51
+ - ``.combinations(0) `` now produces a single empty vector. (#174)
52
+
44
53
- 0.5.10
45
54
46
55
- Add itertools method ``.kmerge_by() `` (and corresponding free function)
You can’t perform that action at this time.
0 commit comments