diff --git a/blessed/__init__.py b/blessed/__init__.py index e581dc7..d1a89c1 100644 --- a/blessed/__init__.py +++ b/blessed/__init__.py @@ -20,4 +20,4 @@ 'support due to http://bugs.python.org/issue10570.') __all__ = ('Terminal',) -__version__ = "1.19.0" +__version__ = "1.19.1" diff --git a/docs/history.rst b/docs/history.rst index 8024d73..4fd1a2e 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -7,6 +7,12 @@ Version History retaining the sequences, :ghissue:`211` by :ghuser:`fishermans-friend` * enhancement: Add small sleep in :meth:`~Terminal.kbhit` on Windows to reduce CPU load :ghissue:`209` by :ghuser:`numerlor` + * enhancement: :meth:`~Terminal.rjust`, :meth:`~Terminal.ljust`, + and :meth:`~Terminal.center` now accept :class:`~typing.SupportsIndex` types, :ghissue:`234` + * enhancement: When 88 colors is detected, it is now interpreted as 16 colors rather than raising + an :exc:`AssertionError`, :ghissue:`235` + * bugfix: Fix global variable declarations in type annotations, :ghissue:`230` by + :ghuser:`mwchase` 1.18 * bugfix: :meth:`~Terminal.split_seqs` for some sequences diff --git a/version.json b/version.json index b363160..e01fd4d 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version": "1.19.0"} +{"version": "1.19.1"}