File tree 5 files changed +11
-8
lines changed
5 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ disallow_intree_builds()
7
7
if (POLICY CMP0048)
8
8
cmake_policy (SET CMP0048 NEW)
9
9
endif ()
10
- project (utf8proc VERSION 2.7 .0 LANGUAGES C)
10
+ project (utf8proc VERSION 2.8 .0 LANGUAGES C)
11
11
12
12
# This is the ABI version number, which may differ from the
13
13
# API version number (defined in utf8proc.h and above).
14
14
# Be sure to also update these in Makefile and MANIFEST!
15
15
set (SO_MAJOR 2)
16
- set (SO_MINOR 5 )
16
+ set (SO_MINOR 6 )
17
17
set (SO_PATCH 0)
18
18
19
19
option (UTF8PROC_INSTALL "Enable installation of utf8proc" On )
Original file line number Diff line number Diff line change 2
2
include/utf8proc.h
3
3
lib/
4
4
lib/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
8
8
lib/pkgconfig/
9
9
lib/pkgconfig/libutf8proc.pc
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ SOFLAG = -Wl,-soname
23
23
# The API version number is defined in utf8proc.h.
24
24
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
25
25
MAJOR =2
26
- MINOR =5
26
+ MINOR =6
27
27
PATCH =0
28
28
29
29
OS := $(shell uname)
Original file line number Diff line number Diff line change 1
1
# utf8proc release history #
2
2
3
- ## Version 2.8.0-alpha ##
3
+ ## Version 2.8.0 ##
4
+
5
+ 2022-10-30
4
6
5
7
- Unicode 15 support ([ #247 ] ).
6
8
@@ -433,3 +435,4 @@ Release of version 1.0.1
433
435
[ #205 ] : https://github.com/JuliaStrings/utf8proc/issues/205
434
436
[ #224 ] : https://github.com/JuliaStrings/utf8proc/issues/224
435
437
[ #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 71
71
/** The MAJOR version number (increased when backwards API compatibility is broken). */
72
72
#define UTF8PROC_VERSION_MAJOR 2
73
73
/** 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
75
75
/** The PATCH version (increased for fixes that do not change the API). */
76
76
#define UTF8PROC_VERSION_PATCH 0
77
77
/** @} */
You can’t perform that action at this time.
0 commit comments