Skip to content

Commit cd0602a

Browse files
committed
0.8.0
1 parent 5a8f2fd commit cd0602a

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
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.7.11"
3+
version = "0.8.0"
44

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

README.rst

Lines changed: 15 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.7"
24+
itertools = "0.8"
2525
2626
How to use in your crate:
2727

@@ -48,6 +48,20 @@ then it can't be accepted into ``libcore``, and you should propose it for ``iter
4848
Recent Changes
4949
--------------
5050

51+
- 0.8.0
52+
53+
- Added new adaptor ``.map_into()`` for conversions using ``Into`` by @vorner
54+
- Improved ``Itertools`` docs by @JohnHeitmann
55+
- The return type of ``.sorted/_by/_by_key()`` is now an iterator, not a Vec.
56+
- The return type of the ``izip!(x, y)`` macro with exactly two arguments
57+
is now the usual ``Iterator::zip``.
58+
- Remove ``.flatten()`` in favour of std's ``.flatten()``
59+
- Deprecate ``.foreach()`` in favour of std's ``.for_each()``
60+
- Deprecate ``.step()`` in favour of std's ``.step_by()``
61+
- Deprecate ``repeat_call`` in favour of std's ``repeat_with``
62+
- Deprecate ``.fold_while()`` in favour of std's ``.try_fold()``
63+
- Require Rust 1.24 as minimal version.
64+
5165
- 0.7.11
5266

5367
- Add convenience methods to ``EitherOrBoth``, making it more similar to ``Option``

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
//! This version of itertools requires Rust 1.24 or later.
4646
//!
4747
//! [`Iterator`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html
48-
#![doc(html_root_url="https://docs.rs/itertools/0.7/")]
48+
#![doc(html_root_url="https://docs.rs/itertools/0.8/")]
4949

5050
extern crate either;
5151

0 commit comments

Comments
 (0)