summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2016-11-30 10:40:26 -0500
committerGitHub <noreply@github.com>2016-11-30 10:40:26 -0500
commitb4621f43c3b8aaa5636cb129cd0f2e0f8cc81889 (patch)
tree5922e437cb79fa411b49ea2fd9089631db24f6f7 /NEWS.md
parent8da37e28920ba72b81c1d2cd4995647aadcd6db5 (diff)
downloadlibutf8proc-b4621f43c3b8aaa5636cb129cd0f2e0f8cc81889.tar.gz
libutf8proc-b4621f43c3b8aaa5636cb129cd0f2e0f8cc81889.tar.bz2
new utf8proc_map_custom for hooking in user-defined custom mappings (#89)
* new utf8proc_map_custom for hooking in user-defined custom mappings * whoops, add test program * NEWS, version bump for 2.1 * change test functions to static so that gcc doesn't complain about missing prototypes
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index a4e5321..663e506 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,17 @@
# utf8proc release history #
+## Version 2.1 (not yet released) ##
+
+- New functions `utf8proc_map_custom` and `utf8proc_decompose_custom`
+ to allow user-supplied transformations of codepoints, in conjunction
+ with other transformations ([#89]).
+
+- New function `utf8proc_normalize_utf32` to apply normalizations
+ directly to UTF-32 data (not just UTF-8) ([#88]).
+
+- Fixed stack overflow that could occur due to incorrect definition
+ of `UINT16_MAX` with some compilers ([#84]).
+
## Version 2.0.2 ##
2016-07-27:
@@ -279,3 +291,6 @@ Release of version 1.0.1
[#78]: https://github.com/JuliaLang/utf8proc/issues/78
[#79]: https://github.com/JuliaLang/utf8proc/issues/79
[#80]: https://github.com/JuliaLang/utf8proc/issues/80
+[#84]: https://github.com/JuliaLang/utf8proc/pull/84
+[#88]: https://github.com/JuliaLang/utf8proc/pull/88
+[#89]: https://github.com/JuliaLang/utf8proc/pull/89