This patch is too simple to be described.
Gbp-Pq: Name utf8proc-unicode-version.patch
# 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)
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:
$(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 $@
}
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) {
/** 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
/** @} */