File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,8 @@ Other Languages
216216=======
217217History
218218=======
219- Unreleased
219+
220+ 0.2.13 *2024-01-06 *
220221 * **Bugfix ** zero-width support for Hangul Jamo (Korean)
221222
2222230.2.12 *2023-11-21 *
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Width of -1
1212
1313The following have a column width of -1 for function :func: `wcwidth.wcwidth `
1414
15- - ``C0 `` control characters (`U+0001`_` through `U+001F `_).
15+ - ``C0 `` control characters (`U+0001 `_ through `U+001F `_).
1616- ``C1 `` control characters and ``DEL `` (`U+007F `_ through `U+00A0 `_).
1717
1818If any character in sequence contains ``C0 `` or ``C1 `` control characters, the final
@@ -76,4 +76,4 @@ Any character in sequence with `U+FE0F`_ (Variation Selector 16) defined by
7676.. _`U+FE0F` : https://codepoints.net/U+FE0F
7777.. _`DerivedGeneralCategory.txt` : https://www.unicode.org/Public/UCD/latest/ucd/extracted/DerivedGeneralCategory.txt
7878.. _`EastAsianWidth.txt` : https://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt`
79- .. _`emoji-variation-sequences.txt` : https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-variation-sequences.txt
79+ .. _`emoji-variation-sequences.txt` : https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-variation-sequences.txt
Original file line number Diff line number Diff 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.12 ' ,
47+ version = '0.2.13 ' ,
4848 description = (
4949 "Measures the displayed width of unicode strings in a terminal" ),
5050 long_description = codecs .open (
Original file line number Diff line number Diff line change 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.12 '
29+ __version__ = '0.2.13 '
You can’t perform that action at this time.
0 commit comments