Skip to content

Commit 6aecb21

Browse files
committed
Prepare for 0.2.13 release
1 parent 248f122 commit 6aecb21

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

docs/intro.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ Other Languages
216216
=======
217217
History
218218
=======
219-
Unreleased
219+
220+
0.2.13 *2024-01-06*
220221
* **Bugfix** zero-width support for Hangul Jamo (Korean)
221222

222223
0.2.12 *2023-11-21*

docs/specs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Width of -1
1212

1313
The 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

1818
If 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

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.12',
47+
version='0.2.13',
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.12'
29+
__version__ = '0.2.13'

0 commit comments

Comments
 (0)