diff --git a/docs/intro.rst b/docs/intro.rst index ad7588b..65df208 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -216,7 +216,8 @@ Other Languages ======= History ======= -Unreleased + +0.2.13 *2024-01-06* * **Bugfix** zero-width support for Hangul Jamo (Korean) 0.2.12 *2023-11-21* diff --git a/docs/specs.rst b/docs/specs.rst index daf9eb8..35b9d62 100644 --- a/docs/specs.rst +++ b/docs/specs.rst @@ -12,7 +12,7 @@ Width of -1 The following have a column width of -1 for function :func:`wcwidth.wcwidth` -- ``C0`` control characters (`U+0001`_` through `U+001F`_). +- ``C0`` control characters (`U+0001`_ through `U+001F`_). - ``C1`` control characters and ``DEL`` (`U+007F`_ through `U+00A0`_). If any character in sequence contains ``C0`` or ``C1`` control characters, the final @@ -76,4 +76,4 @@ Any character in sequence with `U+FE0F`_ (Variation Selector 16) defined by .. _`U+FE0F`: https://codepoints.net/U+FE0F .. _`DerivedGeneralCategory.txt`: https://www.unicode.org/Public/UCD/latest/ucd/extracted/DerivedGeneralCategory.txt .. _`EastAsianWidth.txt`: https://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt` -.. _`emoji-variation-sequences.txt`: https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-variation-sequences.txt \ No newline at end of file +.. _`emoji-variation-sequences.txt`: https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-variation-sequences.txt diff --git a/setup.py b/setup.py index 8616c3e..87e5704 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def main(): setuptools.setup( name='wcwidth', # NOTE: manually manage __version__ in wcwidth/__init__.py ! - version='0.2.12', + version='0.2.13', description=( "Measures the displayed width of unicode strings in a terminal"), long_description=codecs.open( diff --git a/wcwidth/__init__.py b/wcwidth/__init__.py index 40eedb6..d686b30 100644 --- a/wcwidth/__init__.py +++ b/wcwidth/__init__.py @@ -26,4 +26,4 @@ # We also used pkg_resources to load unicode version tables from version.json, # generated by bin/update-tables.py, but some environments are unable to # import pkg_resources for one reason or another, yikes! -__version__ = '0.2.12' +__version__ = '0.2.13'