Skip to content

Commit 04dd30e

Browse files
committed
0.2.11 re-release without .pyi file!
1 parent e21b3e3 commit 04dd30e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/intro.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@ Other Languages
216216
=======
217217
History
218218
=======
219+
0.2.12 *2023-11-21*
220+
* re-release to remove .pyi file misplaced in wheel files `Issue #101`.
219221
0.2.11 *2023-11-20*
220222
* Include tests files in the source distribution (`PR #98`_, `PR #100`_).
221223

@@ -330,6 +332,7 @@ https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c::
330332
.. _`PR #97`: https://github.com/jquast/wcwidth/pull/97
331333
.. _`PR #98`: https://github.com/jquast/wcwidth/pull/98
332334
.. _`PR #100`: https://github.com/jquast/wcwidth/pull/100
335+
.. _`Issue #101`: https://github.com/jquast/wcwidth/issues/101
333336
.. _`jquast/blessed`: https://github.com/jquast/blessed
334337
.. _`selectel/pyte`: https://github.com/selectel/pyte
335338
.. _`thomasballinger/curtsies`: https://github.com/thomasballinger/curtsies

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def main():
4444
setuptools.setup(
4545
name='wcwidth',
4646
# NOTE: manually manage __version__ in wcwidth/__init__.py !
47-
version='0.2.11',
47+
version='0.2.12',
4848
description=(
4949
"Measures the displayed width of unicode strings in a terminal"),
5050
long_description=codecs.open(

wcwidth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
# We also used pkg_resources to load unicode version tables from version.json,
2727
# generated by bin/update-tables.py, but some environments are unable to
2828
# import pkg_resources for one reason or another, yikes!
29-
__version__ = '0.2.11'
29+
__version__ = '0.2.12'

0 commit comments

Comments
 (0)