File tree Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ disallow_intree_builds()
77if (POLICY CMP0048)
88 cmake_policy (SET CMP0048 NEW)
99endif ()
10- project (utf8proc VERSION 2.8 .0 LANGUAGES C)
10+ project (utf8proc VERSION 2.9 .0 LANGUAGES C)
1111
1212# This is the ABI version number, which may differ from the
1313# API version number (defined in utf8proc.h and above).
1414# Be sure to also update these in Makefile and MANIFEST!
15- set (SO_MAJOR 2 )
16- set (SO_MINOR 6 )
15+ set (SO_MAJOR 3 )
16+ set (SO_MINOR 0 )
1717set (SO_PATCH 0)
1818
1919option (UTF8PROC_INSTALL "Enable installation of utf8proc" On )
Original file line number Diff line number Diff line change 22include/utf8proc.h
33lib/
44lib/libutf8proc.a
5- lib/libutf8proc.so -> libutf8proc.so.2.6 .0
6- lib/libutf8proc.so.2 -> libutf8proc.so.2.6 .0
7- lib/libutf8proc.so.2.6 .0
5+ lib/libutf8proc.so -> libutf8proc.so.3.0 .0
6+ lib/libutf8proc.so.2 -> libutf8proc.so.3.0 .0
7+ lib/libutf8proc.so.3.0 .0
88lib/pkgconfig/
99lib/pkgconfig/libutf8proc.pc
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ SOFLAG = -Wl,-soname
2222# compatibility is broken, even if the API is backward-compatible.
2323# The API version number is defined in utf8proc.h.
2424# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
25- MAJOR =2
26- MINOR =6
25+ MAJOR =3
26+ MINOR =0
2727PATCH =0
2828
2929OS := $(shell uname)
Original file line number Diff line number Diff line change 11# utf8proc release history #
22
3+ ## Version 2.9.0 ##
4+
5+ 2023-10-20
6+
7+ - Unicode 15.1 support ([ #253 ] ).
8+
39## Version 2.8.0 ##
410
5112022-10-30
@@ -436,3 +442,4 @@ Release of version 1.0.1
436442[ #224 ] : https://github.com/JuliaStrings/utf8proc/issues/224
437443[ #233 ] : https://github.com/JuliaStrings/utf8proc/issues/233
438444[ #247 ] : https://github.com/JuliaStrings/utf8proc/issues/247
445+ [ #253 ] : https://github.com/JuliaStrings/utf8proc/issues/253
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 8
74+ #define UTF8PROC_VERSION_MINOR 9
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