utf8proc-unicode-version
authorDebian Julia Team <pkg-julia-devel@lists.alioth.debian.org>
Sat, 27 Apr 2019 08:12:00 +0000 (09:12 +0100)
committerMo Zhou <cdluminate@gmail.com>
Sat, 27 Apr 2019 08:12:00 +0000 (09:12 +0100)
This patch is too simple to be described.

Gbp-Pq: Name utf8proc-unicode-version.patch

Makefile
README.md
data/Makefile
utf8proc.c
utf8proc.h

index e3310f7cfe2c4795a733d60606e2a07ed4846485..3899897393329a757aec3a239fde0f04776ac15a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ UCFLAGS = $(CPPFLAGS) $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPO
 # The API version number is defined in utf8proc.h.
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=2
-MINOR=2
+MINOR=3
 PATCH=0
 
 OS := $(shell uname)
index 62236829433c8e04c539f957041d8102833833e7..36655cf3f760c0c0661f4a98230fa08f38cdec3e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ The C library is found in this directory after successful compilation
 and is named `libutf8proc.a` (for the static library) and
 `libutf8proc.so` (for the dynamic library).
 
-The Unicode version supported is 12.0.0.
+The Unicode version supported is 12.1.0.
 
 For Unicode normalizations, the following options are used:
 
index f28698cd6a1fe1c2afc68ccc06df999b0588e165..5e5e1715a0c605d4c2363560efd002a3c3501335 100644 (file)
@@ -22,7 +22,7 @@ CharWidths.txt: charwidths.jl EastAsianWidth.txt
        $(JULIA) charwidths.jl > $@
 
 # Unicode data version (must also update utf8proc_unicode_version function)
-UNICODE_VERSION=12.0.0
+UNICODE_VERSION=12.1.0
 
 UnicodeData.txt:
        cp /usr/share/unicode/UnicodeData.txt $@
index 5de128a0019e9ced4ddbcaec56f9ec36c7d41f77..297c1dc58e9c4ae2e4d2c2cd41ee7f9c24af2cd4 100644 (file)
@@ -101,7 +101,7 @@ UTF8PROC_DLLEXPORT const char *utf8proc_version(void) {
 }
 
 UTF8PROC_DLLEXPORT const char *utf8proc_unicode_version(void) {
-  return "12.0.0";
+  return "12.1.0";
 }
 
 UTF8PROC_DLLEXPORT const char *utf8proc_errmsg(utf8proc_ssize_t errcode) {
index 9df181152b75086d89d9c7cc5acf828b48f5da43..85e956395d4924e414e7e51b229730b43c135e20 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 2
+#define UTF8PROC_VERSION_MINOR 3
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */