Skip to content

Commit

Permalink
Prepare for 0.2.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast committed Jan 6, 2024
1 parent 248f122 commit 6aecb21
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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*
Expand Down
4 changes: 2 additions & 2 deletions docs/specs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
.. _`emoji-variation-sequences.txt`: https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-variation-sequences.txt
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion wcwidth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 6aecb21

Please sign in to comment.