Skip to content

Commit cea3cd1

Browse files
committed
bump to version 2.6
1 parent 0643a64 commit cea3cd1

5 files changed

Lines changed: 20 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ project (utf8proc C)
1010
# API version number (defined in utf8proc.h).
1111
# Be sure to also update these in Makefile and MANIFEST!
1212
set(SO_MAJOR 2)
13-
set(SO_MINOR 3)
14-
set(SO_PATCH 2)
13+
set(SO_MINOR 4)
14+
set(SO_PATCH 0)
1515

1616
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
1717
option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)

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.3.2
6-
lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
7-
lib/libutf8proc.so.2.3.2
5+
lib/libutf8proc.so -> libutf8proc.so.2.4.0
6+
lib/libutf8proc.so.2 -> libutf8proc.so.2.4.0
7+
lib/libutf8proc.so.2.4.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,8 +23,8 @@ 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=2
26-
MINOR=3
27-
PATCH=2
26+
MINOR=4
27+
PATCH=0
2828

2929
OS := $(shell uname)
3030
ifeq ($(OS),Darwin) # MacOS X

NEWS.md

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

3+
## Version 2.6 ##
4+
5+
2020-11-23
6+
7+
- New `utf8proc_islower` and `utf8proc_isupper` functions ([#196]).
8+
9+
- Bugfix for manual calls to `grapheme_break_extended` for initial characters ([#205]).
10+
11+
- Various build and portability improvements.
12+
313
## Version 2.5 ##
414

515
2019-03-27
@@ -395,3 +405,5 @@ Release of version 1.0.1
395405
[#167]: https://github.com/JuliaStrings/utf8proc/issues/167
396406
[#173]: https://github.com/JuliaStrings/utf8proc/issues/173
397407
[#179]: https://github.com/JuliaStrings/utf8proc/issues/179
408+
[#196]: https://github.com/JuliaStrings/utf8proc/issues/196
409+
[#205]: https://github.com/JuliaStrings/utf8proc/issues/205

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 5
74+
#define UTF8PROC_VERSION_MINOR 6
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)