Skip to content

Commit 05886a9

Browse files
authored
version 2.9 bump (#254)
1 parent 46a442b commit 05886a9

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ disallow_intree_builds()
77
if (POLICY CMP0048)
88
cmake_policy (SET CMP0048 NEW)
99
endif ()
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)
1717
set(SO_PATCH 0)
1818

1919
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)

MANIFEST

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ include/
22
include/utf8proc.h
33
lib/
44
lib/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
88
lib/pkgconfig/
99
lib/pkgconfig/libutf8proc.pc

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2727
PATCH=0
2828

2929
OS := $(shell uname)

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

511
2022-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

utf8proc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
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
/** @} */

0 commit comments

Comments
 (0)