From 6379e6d985ff4f14601b4256be6d352f2345b31d Mon Sep 17 00:00:00 2001 From: Jeff Quast Date: Sat, 30 Sep 2023 01:15:45 -0400 Subject: [PATCH] set 0.2.8 version --- setup.py | 2 +- wcwidth/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fdfd00c..540315c 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.7', + version='0.2.8', 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 437e8d4..97c423d 100644 --- a/wcwidth/__init__.py +++ b/wcwidth/__init__.py @@ -25,4 +25,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.7' +__version__ = '0.2.8'