summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2018-05-02 14:18:26 -0400
committerGitHub <noreply@github.com>2018-05-02 14:18:26 -0400
commitd81308faba0cfb3fccf8c3b12446863c7b76ae32 (patch)
treea7c9e0da3b030c9f1182633fb37f4facafd0b63d /NEWS.md
parent86394501342fc7174a069a2d52d53f31b7ee62da (diff)
downloadlibutf8proc-d81308faba0cfb3fccf8c3b12446863c7b76ae32.tar.gz
libutf8proc-d81308faba0cfb3fccf8c3b12446863c7b76ae32.tar.bz2
uppercase mapping ß (U+00df) to ẞ (U+1E9E) (#134)
* uppercase(0x00df) = 0x1e9e * tests for titlecase and u+00df uppercase * NEWS, another test
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index eb4fce7..7e0b6e0 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -14,6 +14,9 @@
- `cmake` fix to avoid defining `UTF8PROC_EXPORTS` globally ([#121]).
+- `toupper` of ß (U+00df) now yields ẞ (U+1E9E) ([#134]), similar to musl;
+ case-folding still yields the standard "ss" mapping.
+
## Version 2.1.1 ##
2018-04-27
@@ -332,3 +335,4 @@ Release of version 1.0.1
[#128]: https://github.com/JuliaLang/utf8proc/issues/128
[#132]: https://github.com/JuliaLang/utf8proc/issues/132
[#133]: https://github.com/JuliaLang/utf8proc/issues/133
+[#134]: https://github.com/JuliaLang/utf8proc/issues/134