From: Debian Julia Team Date: Sat, 27 Apr 2019 08:12:00 +0000 (+0100) Subject: utf8proc-unicode-version X-Git-Tag: archive/raspbian/2.7.0-4+rpi1~1^2^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=726d51f5e1b26d8cfe4d0e0e0d5a913c68b7b50d;p=utf8proc.git utf8proc-unicode-version This patch is too simple to be described. Gbp-Pq: Name utf8proc-unicode-version.patch --- diff --git a/Makefile b/Makefile index e3310f7..3899897 100644 --- 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) diff --git a/README.md b/README.md index 6223682..36655cf 100644 --- 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: diff --git a/data/Makefile b/data/Makefile index f28698c..5e5e171 100644 --- a/data/Makefile +++ b/data/Makefile @@ -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 $@ diff --git a/utf8proc.c b/utf8proc.c index 5de128a..297c1dc 100644 --- a/utf8proc.c +++ b/utf8proc.c @@ -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) { diff --git a/utf8proc.h b/utf8proc.h index 9df1811..85e9563 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -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 /** @} */