Skip to content

Commit

Permalink
Merge pull request #520 from more-itertools/version-8.8.0
Browse files Browse the repository at this point in the history
Version 8.8.0
  • Loading branch information
bbayles committed May 21, 2021
2 parents ae6f75d + aa04f51 commit a9eb806
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ Python iterables.
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Wrapping | `always_iterable <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.always_iterable>`_, |
| | `always_reversible <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.always_reversible>`_, |
| | `countable <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.countable>`_, |
| | `consumer <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.consumer>`_, |
| | `with_iter <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.with_iter>`_, |
| | `iter_except <https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.iter_except>`_ |
Expand Down
11 changes: 11 additions & 0 deletions docs/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ Version History
.. automodule:: more_itertools
:noindex:

8.8.0
-----

* New functions
* :func:`countable` (thanks to krzysieq)

* Changes to existing functions
* :func:`split_before` was updated to handle empy collections (thanks to TiunovNN)
* :func:`unique_everseen` got a performance boost (thanks to Numerlor)
* The type hint for :func:`value_chain` was corrected (thanks to vr2262)

8.7.0
-----

Expand Down
2 changes: 1 addition & 1 deletion more_itertools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .more import * # noqa
from .recipes import * # noqa

__version__ = '8.7.0'
__version__ = '8.8.0'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 8.7.0
current_version = 8.8.0
commit = True
tag = False
files = more_itertools/__init__.py
Expand Down

0 comments on commit a9eb806

Please sign in to comment.