Skip to content

Commit dfa687b

Browse files
authored
prepare for 2.10 release (#281)
* prepare for 2.10 release * update NEWS links
1 parent 701fbc4 commit dfa687b

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include (utils.cmake)
44

55
disallow_intree_builds()
66

7+
# API version - be sure to update utf8proc.h and Makefile, too!
78
project (utf8proc VERSION 2.10.0 LANGUAGES C)
89

910
# This is the ABI version number, which may differ from the

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.3.0.0
6-
lib/libutf8proc.so.2 -> libutf8proc.so.3.0.0
7-
lib/libutf8proc.so.3.0.0
5+
lib/libutf8proc.so -> libutf8proc.so.3.1.0
6+
lib/libutf8proc.so.2 -> libutf8proc.so.3.1.0
7+
lib/libutf8proc.so.3.1.0
88
lib/pkgconfig/
99
lib/pkgconfig/libutf8proc.pc

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ 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!
2525
MAJOR=3
26-
MINOR=0
26+
MINOR=1
2727
PATCH=0
2828

2929
# api version (also in utf8proc.h and CMakeLists.txt)
30-
VERSION=2.9.0
30+
VERSION=2.10.0
3131

3232
OS := $(shell uname)
3333
ifeq ($(OS),Darwin) # MacOS X

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# utf8proc release history #
22

3+
## Version 2.10.0 ##
4+
5+
2024-12-31
6+
7+
- Unicode 16 support ([#277]).
8+
- New `utf8proc_charwidth_ambiguous` function to return whether a character has
9+
East Asian width class A (Ambiguous) ([#270]).
10+
11+
312
## Version 2.9.0 ##
413

514
2023-10-20
@@ -443,3 +452,5 @@ Release of version 1.0.1
443452
[#233]: https://github.com/JuliaStrings/utf8proc/issues/233
444453
[#247]: https://github.com/JuliaStrings/utf8proc/issues/247
445454
[#253]: https://github.com/JuliaStrings/utf8proc/issues/253
455+
[#270]: https://github.com/JuliaStrings/utf8proc/issues/270
456+
[#277]: https://github.com/JuliaStrings/utf8proc/issues/277

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 9
74+
#define UTF8PROC_VERSION_MINOR 10
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)