summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2015-03-28 09:10:00 -0400
committerSteven G. Johnson <stevenj@mit.edu>2015-03-28 09:10:00 -0400
commite1fdad0ca9dc518b429439b6f4eac546a1bdd0de (patch)
tree77e08f8b305fe0a0f694680563d8d0cd0be54633
parenta6fd16f29d1a9d21b7d99c20b72423840c0c7d97 (diff)
downloadlibutf8proc-e1fdad0ca9dc518b429439b6f4eac546a1bdd0de.tar.gz
libutf8proc-e1fdad0ca9dc518b429439b6f4eac546a1bdd0de.tar.bz2
updated NEWS etc. for 1.2 releasev1.2
-rw-r--r--LICENSE.md2
-rw-r--r--NEWS.md4
-rw-r--r--utf8proc.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/LICENSE.md b/LICENSE.md
index a938686..86279fc 100644
--- 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
index d6e97e4..f4d99f8 100644
--- 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
index 133685d..edfce27 100644
--- 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) {