diff --git a/docs/intro.rst b/docs/intro.rst index 75e4767..3274dd6 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -216,6 +216,8 @@ Other Languages ======= History ======= +0.2.12 *2023-11-21* + * re-release to remove .pyi file misplaced in wheel files `Issue #101`. 0.2.11 *2023-11-20* * Include tests files in the source distribution (`PR #98`_, `PR #100`_). @@ -330,6 +332,7 @@ https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c:: .. _`PR #97`: https://github.com/jquast/wcwidth/pull/97 .. _`PR #98`: https://github.com/jquast/wcwidth/pull/98 .. _`PR #100`: https://github.com/jquast/wcwidth/pull/100 +.. _`Issue #101`: https://github.com/jquast/wcwidth/issues/101 .. _`jquast/blessed`: https://github.com/jquast/blessed .. _`selectel/pyte`: https://github.com/selectel/pyte .. _`thomasballinger/curtsies`: https://github.com/thomasballinger/curtsies diff --git a/setup.py b/setup.py index dad331b..8616c3e 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.11', + version='0.2.12', 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 59b9e81..40eedb6 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.11' +__version__ = '0.2.12'