aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/wcwidth/py3/.dist-info
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/wcwidth/py3/.dist-info')
-rw-r--r--contrib/python/wcwidth/py3/.dist-info/METADATA10
1 files changed, 7 insertions, 3 deletions
diff --git a/contrib/python/wcwidth/py3/.dist-info/METADATA b/contrib/python/wcwidth/py3/.dist-info/METADATA
index 2539b52f73..f7f7fcdcc8 100644
--- a/contrib/python/wcwidth/py3/.dist-info/METADATA
+++ b/contrib/python/wcwidth/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: wcwidth
-Version: 0.2.12
+Version: 0.2.13
Summary: Measures the displayed width of unicode strings in a terminal
Home-page: https://github.com/jquast/wcwidth
Author: Jeff Quast
@@ -63,7 +63,7 @@ Example
>>> text = u'コンニチハ'
Python **incorrectly** uses the *string length* of 5 codepoints rather than the
-*printible length* of 10 cells, so that when using the `rjust` function, the
+*printable length* of 10 cells, so that when using the `rjust` function, the
output length is wrong::
>>> print(len('コンニチハ'))
@@ -247,8 +247,12 @@ Other Languages
=======
History
=======
+
+0.2.13 *2024-01-06*
+ * **Bugfix** zero-width support for Hangul Jamo (Korean)
+
0.2.12 *2023-11-21*
- * re-release to remove .pyi file misplaced in wheel files `Issue #101`.
+ * re-release to remove .pyi file misplaced in wheel files `Issue #101`_.
0.2.11 *2023-11-20*
* Include tests files in the source distribution (`PR #98`_, `PR #100`_).