File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ project (utf8proc C)
1010# API version number (defined in utf8proc.h).
1111# Be sure to also update these in Makefile and MANIFEST!
1212set (SO_MAJOR 2)
13- set (SO_MINOR 3 )
14- set (SO_PATCH 2 )
13+ set (SO_MINOR 4 )
14+ set (SO_PATCH 0 )
1515
1616option (UTF8PROC_INSTALL "Enable installation of utf8proc" On )
1717option (UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off )
Original file line number Diff line number Diff line change 22include/utf8proc.h
33lib/
44lib/libutf8proc.a
5- lib/libutf8proc.so -> libutf8proc.so.2.3.2
6- lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
7- lib/libutf8proc.so.2.3.2
5+ lib/libutf8proc.so -> libutf8proc.so.2.4.0
6+ lib/libutf8proc.so.2 -> libutf8proc.so.2.4.0
7+ lib/libutf8proc.so.2.4.0
88lib/pkgconfig/
99lib/pkgconfig/libutf8proc.pc
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ SOFLAG = -Wl,-soname
2323# The API version number is defined in utf8proc.h.
2424# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
2525MAJOR =2
26- MINOR =3
27- PATCH =2
26+ MINOR =4
27+ PATCH =0
2828
2929OS := $(shell uname)
3030ifeq ($(OS ) ,Darwin) # MacOS X
Original file line number Diff line number Diff line change 11# utf8proc release history #
22
3+ ## Version 2.6 ##
4+
5+ 2020-11-23
6+
7+ - New ` utf8proc_islower ` and ` utf8proc_isupper ` functions ([ #196 ] ).
8+
9+ - Bugfix for manual calls to ` grapheme_break_extended ` for initial characters ([ #205 ] ).
10+
11+ - Various build and portability improvements.
12+
313## Version 2.5 ##
414
5152019-03-27
@@ -395,3 +405,5 @@ Release of version 1.0.1
395405[ #167 ] : https://github.com/JuliaStrings/utf8proc/issues/167
396406[ #173 ] : https://github.com/JuliaStrings/utf8proc/issues/173
397407[ #179 ] : https://github.com/JuliaStrings/utf8proc/issues/179
408+ [ #196 ] : https://github.com/JuliaStrings/utf8proc/issues/196
409+ [ #205 ] : https://github.com/JuliaStrings/utf8proc/issues/205
Original file line number Diff line number Diff line change 7171/** The MAJOR version number (increased when backwards API compatibility is broken). */
7272#define UTF8PROC_VERSION_MAJOR 2
7373/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
74- #define UTF8PROC_VERSION_MINOR 5
74+ #define UTF8PROC_VERSION_MINOR 6
7575/** The PATCH version (increased for fixes that do not change the API). */
7676#define UTF8PROC_VERSION_PATCH 0
7777/** @} */
You can’t perform that action at this time.
0 commit comments