File tree Expand file tree Collapse file tree 5 files changed +15
-8
lines changed
Expand file tree Collapse file tree 5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ include (utils.cmake)
55disallow_intree_builds()
66
77# API version - be sure to update utf8proc.h and Makefile, too!
8- project (utf8proc VERSION 2.11.1 LANGUAGES C)
8+ project (utf8proc VERSION 2.11.2 LANGUAGES C)
99
1010# This is the ABI version number, which may differ from the
1111# API version number (defined in utf8proc.h and above).
1212# Be sure to also update these in Makefile and MANIFEST!
1313set (SO_MAJOR 3)
1414set (SO_MINOR 2)
15- set (SO_PATCH 1 )
15+ set (SO_PATCH 2 )
1616
1717option (UTF8PROC_INSTALL "Enable installation of utf8proc" On )
1818option (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.3.2.1
6- lib/libutf8proc.so.2 -> libutf8proc.so.3.2.1
7- lib/libutf8proc.so.3.2.1
5+ lib/libutf8proc.so -> libutf8proc.so.3.2.2
6+ lib/libutf8proc.so.2 -> libutf8proc.so.3.2.2
7+ lib/libutf8proc.so.3.2.2
88lib/pkgconfig/
99lib/pkgconfig/libutf8proc.pc
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ SOFLAG = -Wl,-soname
2424# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
2525MAJOR =3
2626MINOR =2
27- PATCH =1
27+ PATCH =2
2828
2929# api version (also in utf8proc.h and CMakeLists.txt)
30- VERSION =2.11.1
30+ VERSION =2.11.2
3131
3232OS := $(shell uname)
3333ifeq ($(OS ) ,Darwin) # MacOS X
Original file line number Diff line number Diff line change 11# utf8proc release history #
22
3+ ## Version 2.11.2 ##
4+
5+ 2025-11-22
6+
7+ - Fix composition for Hangul character U+11a7 ([ #317 ] ).
8+
39## Version 2.11.1 ##
410
5112025-11-13
@@ -477,3 +483,4 @@ Release of version 1.0.1
477483[ #294 ] : https://github.com/JuliaStrings/utf8proc/issues/294
478484[ #295 ] : https://github.com/JuliaStrings/utf8proc/issues/295
479485[ #311 ] : https://github.com/JuliaStrings/utf8proc/issues/311
486+ [ #317 ] : https://github.com/JuliaStrings/utf8proc/issues/317
Original file line number Diff line number Diff line change 7373/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
7474#define UTF8PROC_VERSION_MINOR 11
7575/** The PATCH version (increased for fixes that do not change the API). */
76- #define UTF8PROC_VERSION_PATCH 1
76+ #define UTF8PROC_VERSION_PATCH 2
7777/** @} */
7878
7979#include <stdlib.h>
You can’t perform that action at this time.
0 commit comments