Skip to content

Commit

Permalink
prepare for 2.10 release (#281)
Browse files Browse the repository at this point in the history
* prepare for 2.10 release

* update NEWS links
  • Loading branch information
stevengj authored Dec 31, 2024
1 parent 701fbc4 commit dfa687b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
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

0 comments on commit dfa687b

Please sign in to comment.