Skip to content

Commit cdd0c1e

Browse files
committed
0.6.0
1 parent c9af57f commit cdd0c1e

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "itertools"
3-
version = "0.5.10"
3+
version = "0.6.0"
44

55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/bluss/rust-itertools"

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ How to use with cargo:
2121
.. code:: toml
2222
2323
[dependencies]
24-
itertools = "0.5.9"
24+
itertools = "0.6.0"
2525
2626
How to use in your crate:
2727

@@ -41,6 +41,15 @@ How to contribute:
4141
Recent Changes
4242
--------------
4343

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+
4453
- 0.5.10
4554

4655
- Add itertools method ``.kmerge_by()`` (and corresponding free function)

0 commit comments

Comments
 (0)