Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include (utils.cmake)

disallow_intree_builds()

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

# This is the ABI version number, which may differ from the
Expand Down
6 changes: 3 additions & 3 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ include/
include/utf8proc.h
lib/
lib/libutf8proc.a
lib/libutf8proc.so -> libutf8proc.so.3.0.0
lib/libutf8proc.so.2 -> libutf8proc.so.3.0.0
lib/libutf8proc.so.3.0.0
lib/libutf8proc.so -> libutf8proc.so.3.1.0
lib/libutf8proc.so.2 -> libutf8proc.so.3.1.0
lib/libutf8proc.so.3.1.0
lib/pkgconfig/
lib/pkgconfig/libutf8proc.pc
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ SOFLAG = -Wl,-soname
# The API version number is defined in utf8proc.h.
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
MAJOR=3
MINOR=0
MINOR=1
PATCH=0

# api version (also in utf8proc.h and CMakeLists.txt)
VERSION=2.9.0
VERSION=2.10.0

OS := $(shell uname)
ifeq ($(OS),Darwin) # MacOS X
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# utf8proc release history #

## Version 2.10.0 ##

2024-12-31

- Unicode 16 support ([#277]).
- New `utf8proc_charwidth_ambiguous` function to return whether a character has
East Asian width class A (Ambiguous) ([#270]).


## Version 2.9.0 ##

2023-10-20
Expand Down Expand Up @@ -443,3 +452,5 @@ Release of version 1.0.1
[#233]: https://github.com/JuliaStrings/utf8proc/issues/233
[#247]: https://github.com/JuliaStrings/utf8proc/issues/247
[#253]: https://github.com/JuliaStrings/utf8proc/issues/253
[#270]: https://github.com/JuliaStrings/utf8proc/issues/270
[#277]: https://github.com/JuliaStrings/utf8proc/issues/277
2 changes: 1 addition & 1 deletion utf8proc.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
/** The MAJOR version number (increased when backwards API compatibility is broken). */
#define UTF8PROC_VERSION_MAJOR 2
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
#define UTF8PROC_VERSION_MINOR 9
#define UTF8PROC_VERSION_MINOR 10
/** The PATCH version (increased for fixes that do not change the API). */
#define UTF8PROC_VERSION_PATCH 0
/** @} */
Expand Down
Loading