utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit e1fdad0ca9dc518b429439b6f4eac546a1bdd0de
parent a6fd16f29d1a9d21b7d99c20b72423840c0c7d97
Author: Steven G. Johnson <stevenj@mit.edu>
Date:   Sat, 28 Mar 2015 09:10:00 -0400

updated NEWS etc. for 1.2 release

Diffstat:
MLICENSE.md | 2+-
MNEWS.md | 4+++-
Mutf8proc.c | 2+-
3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/LICENSE.md b/LICENSE.md @@ -7,7 +7,7 @@ whose copyright and license statements are reproduced below, all new work on the utf8proc library is licensed under the [MIT "expat" license](http://opensource.org/licenses/MIT): -*Copyright &copy; 2014 by Steven G. Johnson, Jiahao Chen, Tony Kelman, and other contributors listed in the git history.* +*Copyright &copy; 2014-2015 by Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas Fonseca, and other contributors listed in the git history.* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/NEWS.md b/NEWS.md @@ -1,6 +1,8 @@ # utf8proc release history # -## Version 1.2-dev ## +## Version 1.2 ## + +2015-03-28: - Updated for Unicode 7.0 ([#6]). diff --git a/utf8proc.c b/utf8proc.c @@ -88,7 +88,7 @@ DLLEXPORT const int8_t utf8proc_utf8class[256] = { #define STRINGIZEx(x) #x #define STRINGIZE(x) STRINGIZEx(x) DLLEXPORT const char *utf8proc_version(void) { - return STRINGIZE(UTF8PROC_VERSION_MAJOR) "." STRINGIZE(UTF8PROC_VERSION_MINOR) "." STRINGIZE(UTF8PROC_VERSION_PATCH) "-dev"; + return STRINGIZE(UTF8PROC_VERSION_MAJOR) "." STRINGIZE(UTF8PROC_VERSION_MINOR) "." STRINGIZE(UTF8PROC_VERSION_PATCH) ""; } DLLEXPORT const char *utf8proc_errmsg(ssize_t errcode) {