File tree Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Expand file tree Collapse file tree 5 files changed +11
-8
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.7 .0 LANGUAGES C)
10+ project (utf8proc VERSION 2.8 .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!
1515set (SO_MAJOR 2)
16- set (SO_MINOR 5 )
16+ set (SO_MINOR 6 )
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.5 .0
6- lib/libutf8proc.so.2 -> libutf8proc.so.2.5 .0
7- lib/libutf8proc.so.2.5 .0
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
88lib/pkgconfig/
99lib/pkgconfig/libutf8proc.pc
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ 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 =5
26+ MINOR =6
2727PATCH =0
2828
2929OS := $(shell uname)
Original file line number Diff line number Diff line change 11# utf8proc release history #
22
3- ## Version 2.8.0-alpha ##
3+ ## Version 2.8.0 ##
4+
5+ 2022-10-30
46
57 - Unicode 15 support ([ #247 ] ).
68
@@ -433,3 +435,4 @@ Release of version 1.0.1
433435[ #205 ] : https://github.com/JuliaStrings/utf8proc/issues/205
434436[ #224 ] : https://github.com/JuliaStrings/utf8proc/issues/224
435437[ #233 ] : https://github.com/JuliaStrings/utf8proc/issues/233
438+ [ #247 ] : https://github.com/JuliaStrings/utf8proc/issues/247
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 7
74+ #define UTF8PROC_VERSION_MINOR 8
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