diff --git a/docs/versions.rst b/docs/versions.rst index d8459bb2..8bef23ef 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -5,6 +5,16 @@ Version History .. automodule:: more_itertools :noindex: +8.10.0 +------ + +* Changes to existing functions + * The type stub for :func:`iter_except` was improved (thanks to MarcinKonowalczyk) + +* Other changes: + * Type stubs now ship with the source release (thanks to saaketp) + * The Sphinx docs were improved (thanks to MarcinKonowalczyk) + 8.9.0 ----- diff --git a/more_itertools/__init__.py b/more_itertools/__init__.py index f2c0c7b4..e2d7d91d 100644 --- a/more_itertools/__init__.py +++ b/more_itertools/__init__.py @@ -1,4 +1,4 @@ from .more import * # noqa from .recipes import * # noqa -__version__ = '8.9.0' +__version__ = '8.10.0' diff --git a/setup.cfg b/setup.cfg index d85f02e6..af0234b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.9.0 +current_version = 8.10.0 commit = True tag = False files = more_itertools/__init__.py