From 4f5ba6238edc345086ae060a307692623bf15ecc Mon Sep 17 00:00:00 2001 From: Jeff Quast Date: Mon, 20 Nov 2023 21:36:44 -0500 Subject: [PATCH] Bump docs, setup.py, __init__.py for release 0.2.11 --- docs/intro.rst | 2 +- setup.py | 2 +- wcwidth/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/intro.rst b/docs/intro.rst index aa4bf4a..c14bbb9 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -216,7 +216,7 @@ Other Languages ======= History ======= -0.2.11 *2023-11-??* +0.2.11 *2023-11-20* * Include tests files in the source distibution (`PR #98`_, `PR #100`_). 0.2.10 *2023-11-13* diff --git a/setup.py b/setup.py index ad4d72c..dad331b 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.10', + version='0.2.11', 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 91e18db..59b9e81 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.10' +__version__ = '0.2.11'