Skip to content

Commit

Permalink
0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Dec 9, 2018
1 parent 5a8f2fd commit cd0602a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "itertools"
version = "0.7.11"
version = "0.8.0"

license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/rust-itertools"
Expand Down
16 changes: 15 additions & 1 deletion README.rst
Expand Up @@ -21,7 +21,7 @@ How to use with cargo:
.. code:: toml
[dependencies]
itertools = "0.7"
itertools = "0.8"
How to use in your crate:

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

- 0.8.0

- Added new adaptor ``.map_into()`` for conversions using ``Into`` by @vorner
- Improved ``Itertools`` docs by @JohnHeitmann
- The return type of ``.sorted/_by/_by_key()`` is now an iterator, not a Vec.
- The return type of the ``izip!(x, y)`` macro with exactly two arguments
is now the usual ``Iterator::zip``.
- Remove ``.flatten()`` in favour of std's ``.flatten()``
- Deprecate ``.foreach()`` in favour of std's ``.for_each()``
- Deprecate ``.step()`` in favour of std's ``.step_by()``
- Deprecate ``repeat_call`` in favour of std's ``repeat_with``
- Deprecate ``.fold_while()`` in favour of std's ``.try_fold()``
- Require Rust 1.24 as minimal version.

- 0.7.11

- Add convenience methods to ``EitherOrBoth``, making it more similar to ``Option``
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -45,7 +45,7 @@
//! This version of itertools requires Rust 1.24 or later.
//!
//! [`Iterator`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html
#![doc(html_root_url="https://docs.rs/itertools/0.7/")]
#![doc(html_root_url="https://docs.rs/itertools/0.8/")]

extern crate either;

Expand Down

0 comments on commit cd0602a

Please sign in to comment.