bump to version 2.6
This commit is contained in:
parent
0643a64479
commit
cea3cd158f
@ -10,8 +10,8 @@ project (utf8proc C)
|
|||||||
# API version number (defined in utf8proc.h).
|
# API version number (defined in utf8proc.h).
|
||||||
# Be sure to also update these in Makefile and MANIFEST!
|
# Be sure to also update these in Makefile and MANIFEST!
|
||||||
set(SO_MAJOR 2)
|
set(SO_MAJOR 2)
|
||||||
set(SO_MINOR 3)
|
set(SO_MINOR 4)
|
||||||
set(SO_PATCH 2)
|
set(SO_PATCH 0)
|
||||||
|
|
||||||
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
|
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
|
||||||
option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
|
option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
|
||||||
|
|||||||
6
MANIFEST
6
MANIFEST
@ -2,8 +2,8 @@ include/
|
|||||||
include/utf8proc.h
|
include/utf8proc.h
|
||||||
lib/
|
lib/
|
||||||
lib/libutf8proc.a
|
lib/libutf8proc.a
|
||||||
lib/libutf8proc.so -> libutf8proc.so.2.3.2
|
lib/libutf8proc.so -> libutf8proc.so.2.4.0
|
||||||
lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
|
lib/libutf8proc.so.2 -> libutf8proc.so.2.4.0
|
||||||
lib/libutf8proc.so.2.3.2
|
lib/libutf8proc.so.2.4.0
|
||||||
lib/pkgconfig/
|
lib/pkgconfig/
|
||||||
lib/pkgconfig/libutf8proc.pc
|
lib/pkgconfig/libutf8proc.pc
|
||||||
|
|||||||
4
Makefile
4
Makefile
@ -23,8 +23,8 @@ SOFLAG = -Wl,-soname
|
|||||||
# The API version number is defined in utf8proc.h.
|
# The API version number is defined in utf8proc.h.
|
||||||
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
|
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
|
||||||
MAJOR=2
|
MAJOR=2
|
||||||
MINOR=3
|
MINOR=4
|
||||||
PATCH=2
|
PATCH=0
|
||||||
|
|
||||||
OS := $(shell uname)
|
OS := $(shell uname)
|
||||||
ifeq ($(OS),Darwin) # MacOS X
|
ifeq ($(OS),Darwin) # MacOS X
|
||||||
|
|||||||
12
NEWS.md
12
NEWS.md
@ -1,5 +1,15 @@
|
|||||||
# utf8proc release history #
|
# utf8proc release history #
|
||||||
|
|
||||||
|
## Version 2.6 ##
|
||||||
|
|
||||||
|
2020-11-23
|
||||||
|
|
||||||
|
- New `utf8proc_islower` and `utf8proc_isupper` functions ([#196]).
|
||||||
|
|
||||||
|
- Bugfix for manual calls to `grapheme_break_extended` for initial characters ([#205]).
|
||||||
|
|
||||||
|
- Various build and portability improvements.
|
||||||
|
|
||||||
## Version 2.5 ##
|
## Version 2.5 ##
|
||||||
|
|
||||||
2019-03-27
|
2019-03-27
|
||||||
@ -395,3 +405,5 @@ Release of version 1.0.1
|
|||||||
[#167]: https://github.com/JuliaStrings/utf8proc/issues/167
|
[#167]: https://github.com/JuliaStrings/utf8proc/issues/167
|
||||||
[#173]: https://github.com/JuliaStrings/utf8proc/issues/173
|
[#173]: https://github.com/JuliaStrings/utf8proc/issues/173
|
||||||
[#179]: https://github.com/JuliaStrings/utf8proc/issues/179
|
[#179]: https://github.com/JuliaStrings/utf8proc/issues/179
|
||||||
|
[#196]: https://github.com/JuliaStrings/utf8proc/issues/196
|
||||||
|
[#205]: https://github.com/JuliaStrings/utf8proc/issues/205
|
||||||
|
|||||||
@ -71,7 +71,7 @@
|
|||||||
/** The MAJOR version number (increased when backwards API compatibility is broken). */
|
/** The MAJOR version number (increased when backwards API compatibility is broken). */
|
||||||
#define UTF8PROC_VERSION_MAJOR 2
|
#define UTF8PROC_VERSION_MAJOR 2
|
||||||
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
|
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
|
||||||
#define UTF8PROC_VERSION_MINOR 5
|
#define UTF8PROC_VERSION_MINOR 6
|
||||||
/** The PATCH version (increased for fixes that do not change the API). */
|
/** The PATCH version (increased for fixes that do not change the API). */
|
||||||
#define UTF8PROC_VERSION_PATCH 0
|
#define UTF8PROC_VERSION_PATCH 0
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user