Skip to content

Commit 5c632c5

Browse files
committed
NEWS for 2.4, updated version numbers (which I forgot in 2.3, grrr)
1 parent 9bb261f commit 5c632c5

File tree

6 files changed

+75
-58
lines changed

6 files changed

+75
-58
lines changed

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 2)
14-
set(SO_PATCH 0)
13+
set(SO_MINOR 3)
14+
set(SO_PATCH 1)
1515

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

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.2.0
6-
lib/libutf8proc.so.2 -> libutf8proc.so.2.2.0
7-
lib/libutf8proc.so.2.2.0
5+
lib/libutf8proc.so -> libutf8proc.so.2.3.1
6+
lib/libutf8proc.so.2 -> libutf8proc.so.2.3.1
7+
lib/libutf8proc.so.2.3.1
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=2
27-
PATCH=0
26+
MINOR=3
27+
PATCH=1
2828

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

NEWS.md

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

3+
## Version 2.4 ##
4+
5+
2019-05-10
6+
7+
- Unicode 12.1 support ([#156]).
8+
9+
- New `-DUTF8PROC_INSTALL=No` option for `cmake` builds to disable installation ([#152]).
10+
11+
- Better `make` support for HP-UX ([#154]).
12+
13+
- Fixed incorrect `UTF8PROC_VERSION_MINOR` version number in header and bumped shared-library version.
14+
315
## Version 2.3 ##
416

517
2019-03-30
@@ -316,52 +328,57 @@ Release of version 1.0.1
316328

317329
2006-06-02: initial release of version 0.1
318330

319-
[#6]: https://github.com/JuliaLang/julia/issues/6
320-
[#13]: https://github.com/JuliaLang/julia/issues/13
321-
[#17]: https://github.com/JuliaLang/julia/issues/17
322-
[#20]: https://github.com/JuliaLang/julia/issues/20
323-
[#22]: https://github.com/JuliaLang/julia/issues/22
324-
[#24]: https://github.com/JuliaLang/julia/issues/24
325-
[#27]: https://github.com/JuliaLang/julia/issues/27
326-
[#28]: https://github.com/JuliaLang/julia/issues/28
327-
[#29]: https://github.com/JuliaLang/julia/issues/29
328-
[#32]: https://github.com/JuliaLang/julia/issues/32
329-
[#35]: https://github.com/JuliaLang/julia/issues/35
330-
[#40]: https://github.com/JuliaLang/julia/issues/40
331-
[#43]: https://github.com/JuliaLang/julia/issues/43
332-
[#45]: https://github.com/JuliaLang/julia/issues/45
333-
[#47]: https://github.com/JuliaLang/julia/issues/47
334-
[#51]: https://github.com/JuliaLang/julia/issues/51
335-
[#55]: https://github.com/JuliaLang/julia/issues/55
336-
[#58]: https://github.com/JuliaLang/julia/issues/58
337-
[#62]: https://github.com/JuliaLang/julia/issues/62
338-
[#66]: https://github.com/JuliaLang/julia/issues/66
339-
[#68]: https://github.com/JuliaLang/julia/issues/68
340-
[#70]: https://github.com/JuliaLang/julia/issues/70
341-
[#77]: https://github.com/JuliaLang/julia/issues/77
342-
[#78]: https://github.com/JuliaLang/julia/issues/78
343-
[#79]: https://github.com/JuliaLang/julia/issues/79
344-
[#80]: https://github.com/JuliaLang/julia/issues/80
345-
[#84]: https://github.com/JuliaLang/julia/issues/84
346-
[#88]: https://github.com/JuliaLang/julia/issues/88
347-
[#89]: https://github.com/JuliaLang/julia/issues/89
348-
[#90]: https://github.com/JuliaLang/julia/issues/90
349-
[#94]: https://github.com/JuliaLang/julia/issues/94
350-
[#99]: https://github.com/JuliaLang/julia/issues/99
351-
[#113]: https://github.com/JuliaLang/julia/issues/113
352-
[#121]: https://github.com/JuliaLang/julia/issues/121
353-
[#123]: https://github.com/JuliaLang/julia/issues/123
354-
[#125]: https://github.com/JuliaLang/julia/issues/125
355-
[#128]: https://github.com/JuliaLang/julia/issues/128
356-
[#132]: https://github.com/JuliaLang/julia/issues/132
357-
[#133]: https://github.com/JuliaLang/julia/issues/133
358-
[#134]: https://github.com/JuliaLang/julia/issues/134
359-
[#135]: https://github.com/JuliaLang/julia/issues/135
360-
[#140]: https://github.com/JuliaLang/julia/issues/140
361-
[#141]: https://github.com/JuliaLang/julia/issues/141
362-
[#142]: https://github.com/JuliaLang/julia/issues/142
363-
[#147]: https://github.com/JuliaLang/julia/issues/147
364-
[#148]: https://github.com/JuliaLang/julia/issues/148
365-
[#149]: https://github.com/JuliaLang/julia/issues/149
366-
[#150]: https://github.com/JuliaLang/julia/issues/150
367-
[#151]: https://github.com/JuliaLang/julia/issues/151
331+
<!--- generated by NEWS-update.jl: -->
332+
333+
[#6]: https://github.com/JuliaStrings/utf8proc/issues/6
334+
[#13]: https://github.com/JuliaStrings/utf8proc/issues/13
335+
[#17]: https://github.com/JuliaStrings/utf8proc/issues/17
336+
[#20]: https://github.com/JuliaStrings/utf8proc/issues/20
337+
[#22]: https://github.com/JuliaStrings/utf8proc/issues/22
338+
[#24]: https://github.com/JuliaStrings/utf8proc/issues/24
339+
[#27]: https://github.com/JuliaStrings/utf8proc/issues/27
340+
[#28]: https://github.com/JuliaStrings/utf8proc/issues/28
341+
[#29]: https://github.com/JuliaStrings/utf8proc/issues/29
342+
[#32]: https://github.com/JuliaStrings/utf8proc/issues/32
343+
[#35]: https://github.com/JuliaStrings/utf8proc/issues/35
344+
[#40]: https://github.com/JuliaStrings/utf8proc/issues/40
345+
[#43]: https://github.com/JuliaStrings/utf8proc/issues/43
346+
[#45]: https://github.com/JuliaStrings/utf8proc/issues/45
347+
[#47]: https://github.com/JuliaStrings/utf8proc/issues/47
348+
[#51]: https://github.com/JuliaStrings/utf8proc/issues/51
349+
[#55]: https://github.com/JuliaStrings/utf8proc/issues/55
350+
[#58]: https://github.com/JuliaStrings/utf8proc/issues/58
351+
[#62]: https://github.com/JuliaStrings/utf8proc/issues/62
352+
[#66]: https://github.com/JuliaStrings/utf8proc/issues/66
353+
[#68]: https://github.com/JuliaStrings/utf8proc/issues/68
354+
[#70]: https://github.com/JuliaStrings/utf8proc/issues/70
355+
[#77]: https://github.com/JuliaStrings/utf8proc/issues/77
356+
[#78]: https://github.com/JuliaStrings/utf8proc/issues/78
357+
[#79]: https://github.com/JuliaStrings/utf8proc/issues/79
358+
[#80]: https://github.com/JuliaStrings/utf8proc/issues/80
359+
[#84]: https://github.com/JuliaStrings/utf8proc/issues/84
360+
[#88]: https://github.com/JuliaStrings/utf8proc/issues/88
361+
[#89]: https://github.com/JuliaStrings/utf8proc/issues/89
362+
[#90]: https://github.com/JuliaStrings/utf8proc/issues/90
363+
[#94]: https://github.com/JuliaStrings/utf8proc/issues/94
364+
[#99]: https://github.com/JuliaStrings/utf8proc/issues/99
365+
[#113]: https://github.com/JuliaStrings/utf8proc/issues/113
366+
[#121]: https://github.com/JuliaStrings/utf8proc/issues/121
367+
[#123]: https://github.com/JuliaStrings/utf8proc/issues/123
368+
[#125]: https://github.com/JuliaStrings/utf8proc/issues/125
369+
[#128]: https://github.com/JuliaStrings/utf8proc/issues/128
370+
[#132]: https://github.com/JuliaStrings/utf8proc/issues/132
371+
[#133]: https://github.com/JuliaStrings/utf8proc/issues/133
372+
[#134]: https://github.com/JuliaStrings/utf8proc/issues/134
373+
[#135]: https://github.com/JuliaStrings/utf8proc/issues/135
374+
[#140]: https://github.com/JuliaStrings/utf8proc/issues/140
375+
[#141]: https://github.com/JuliaStrings/utf8proc/issues/141
376+
[#142]: https://github.com/JuliaStrings/utf8proc/issues/142
377+
[#147]: https://github.com/JuliaStrings/utf8proc/issues/147
378+
[#148]: https://github.com/JuliaStrings/utf8proc/issues/148
379+
[#149]: https://github.com/JuliaStrings/utf8proc/issues/149
380+
[#150]: https://github.com/JuliaStrings/utf8proc/issues/150
381+
[#151]: https://github.com/JuliaStrings/utf8proc/issues/151
382+
[#152]: https://github.com/JuliaStrings/utf8proc/issues/152
383+
[#154]: https://github.com/JuliaStrings/utf8proc/issues/154
384+
[#156]: https://github.com/JuliaStrings/utf8proc/issues/156

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The C library is found in this directory after successful compilation
6060
and is named `libutf8proc.a` (for the static library) and
6161
`libutf8proc.so` (for the dynamic library).
6262

63-
The Unicode version supported is 12.0.0.
63+
The Unicode version supported is 12.1.0.
6464

6565
For Unicode normalizations, the following options are used:
6666

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 2
74+
#define UTF8PROC_VERSION_MINOR 4
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)