From 2bb7d884b5417c574e222924c834289d7ccd9adf Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Fri, 27 Mar 2020 17:22:21 -0400 Subject: [PATCH] version bump to 2.5 --- CMakeLists.txt | 2 +- MANIFEST | 6 +++--- Makefile | 2 +- NEWS.md | 10 ++++++++++ utf8proc.h | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f5d2d4..bfc3f9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ project (utf8proc C) # Be sure to also update these in Makefile and MANIFEST! set(SO_MAJOR 2) set(SO_MINOR 3) -set(SO_PATCH 1) +set(SO_PATCH 2) option(UTF8PROC_INSTALL "Enable installation of utf8proc" On) option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off) diff --git a/MANIFEST b/MANIFEST index b9abfed..98fc505 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2,8 +2,8 @@ include/ include/utf8proc.h lib/ lib/libutf8proc.a -lib/libutf8proc.so -> libutf8proc.so.2.3.1 -lib/libutf8proc.so.2 -> libutf8proc.so.2.3.1 -lib/libutf8proc.so.2.3.1 +lib/libutf8proc.so -> libutf8proc.so.2.3.2 +lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2 +lib/libutf8proc.so.2.3.2 lib/pkgconfig/ lib/pkgconfig/libutf8proc.pc diff --git a/Makefile b/Makefile index 0de0697..149618c 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ SOFLAG = -Wl,-soname # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt! MAJOR=2 MINOR=3 -PATCH=1 +PATCH=2 OS := $(shell uname) ifeq ($(OS),Darwin) # MacOS X diff --git a/NEWS.md b/NEWS.md index 9f3e2ec..ec49c5e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,15 @@ # utf8proc release history # +## Version 2.5 ## + +2019-03-27 + +- Unicode 13 support ([#179]). + +- No longer report zero width for category Sk ([#167]). + +- `cmake` support improvements ([#173]). + ## Version 2.4 ## 2019-05-10 diff --git a/utf8proc.h b/utf8proc.h index 490200f..36b4ddb 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 4 +#define UTF8PROC_VERSION_MINOR 5 /** The PATCH version (increased for fixes that do not change the API). */ #define UTF8PROC_VERSION_PATCH 0 /** @} */