version bump to 2.5

This commit is contained in:
Steven G. Johnson 2020-03-27 17:22:21 -04:00
parent b48f5d074f
commit 2bb7d884b5
5 changed files with 16 additions and 6 deletions

View File

@ -11,7 +11,7 @@ project (utf8proc C)
# Be sure to also update these in Makefile and MANIFEST! # Be sure to also update these in Makefile and MANIFEST!
set(SO_MAJOR 2) set(SO_MAJOR 2)
set(SO_MINOR 3) set(SO_MINOR 3)
set(SO_PATCH 1) set(SO_PATCH 2)
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On) option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off) option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)

View File

@ -2,8 +2,8 @@ include/
include/utf8proc.h include/utf8proc.h
lib/ lib/
lib/libutf8proc.a lib/libutf8proc.a
lib/libutf8proc.so -> libutf8proc.so.2.3.1 lib/libutf8proc.so -> libutf8proc.so.2.3.2
lib/libutf8proc.so.2 -> libutf8proc.so.2.3.1 lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
lib/libutf8proc.so.2.3.1 lib/libutf8proc.so.2.3.2
lib/pkgconfig/ lib/pkgconfig/
lib/pkgconfig/libutf8proc.pc lib/pkgconfig/libutf8proc.pc

View File

@ -24,7 +24,7 @@ SOFLAG = -Wl,-soname
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt! # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
MAJOR=2 MAJOR=2
MINOR=3 MINOR=3
PATCH=1 PATCH=2
OS := $(shell uname) OS := $(shell uname)
ifeq ($(OS),Darwin) # MacOS X ifeq ($(OS),Darwin) # MacOS X

10
NEWS.md
View File

@ -1,5 +1,15 @@
# utf8proc release history # # 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 ## ## Version 2.4 ##
2019-05-10 2019-05-10

View File

@ -71,7 +71,7 @@
/** The MAJOR version number (increased when backwards API compatibility is broken). */ /** The MAJOR version number (increased when backwards API compatibility is broken). */
#define UTF8PROC_VERSION_MAJOR 2 #define UTF8PROC_VERSION_MAJOR 2
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */ /** 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). */ /** The PATCH version (increased for fixes that do not change the API). */
#define UTF8PROC_VERSION_PATCH 0 #define UTF8PROC_VERSION_PATCH 0
/** @} */ /** @} */