NEWS for upcoming 2.2 release, version bump
This commit is contained in:
parent
bdc8b9e4b2
commit
8639450134
@ -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 1)
|
set(SO_MINOR 2)
|
||||||
set(SO_PATCH 1)
|
set(SO_PATCH 0)
|
||||||
|
|
||||||
if (NOT MSVC)
|
if (NOT MSVC)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall")
|
||||||
|
|||||||
6
MANIFEST
6
MANIFEST
@ -2,6 +2,6 @@ include/
|
|||||||
include/utf8proc.h
|
include/utf8proc.h
|
||||||
lib/
|
lib/
|
||||||
lib/libutf8proc.a
|
lib/libutf8proc.a
|
||||||
lib/libutf8proc.so -> libutf8proc.so.2.1.1
|
lib/libutf8proc.so -> libutf8proc.so.2.2.0
|
||||||
lib/libutf8proc.so.2 -> libutf8proc.so.2.1.1
|
lib/libutf8proc.so.2 -> libutf8proc.so.2.2.0
|
||||||
lib/libutf8proc.so.2.1.1
|
lib/libutf8proc.so.2.2.0
|
||||||
|
|||||||
4
Makefile
4
Makefile
@ -20,8 +20,8 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS $(UTF8PR
|
|||||||
# 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=1
|
MINOR=2
|
||||||
PATCH=1
|
PATCH=0
|
||||||
|
|
||||||
OS := $(shell uname)
|
OS := $(shell uname)
|
||||||
ifeq ($(OS),Darwin) # MacOS X
|
ifeq ($(OS),Darwin) # MacOS X
|
||||||
|
|||||||
18
NEWS.md
18
NEWS.md
@ -1,5 +1,19 @@
|
|||||||
# utf8proc release history #
|
# utf8proc release history #
|
||||||
|
|
||||||
|
## Version 2.2 alpha ##
|
||||||
|
|
||||||
|
- Unicode 10 support ([#132]).
|
||||||
|
|
||||||
|
- `utf8proc_NFKC_Casefold` convenience function for `NFKC_Casefold`
|
||||||
|
normalization ([#133]).
|
||||||
|
|
||||||
|
- `UTF8PROC_STRIPNA` option to strip unassigned codepoints ([#133]).
|
||||||
|
|
||||||
|
- Support building static libraries on Windows (callers need to
|
||||||
|
`#define UTF8PROC_STATIC`) ([#123]).
|
||||||
|
|
||||||
|
- `cmake` fix to avoid defining `UTF8PROC_EXPORTS` globally ([#121]).
|
||||||
|
|
||||||
## Version 2.1.1 ##
|
## Version 2.1.1 ##
|
||||||
|
|
||||||
2018-04-27
|
2018-04-27
|
||||||
@ -312,5 +326,9 @@ Release of version 1.0.1
|
|||||||
[#94]: https://github.com/JuliaLang/utf8proc/issues/94
|
[#94]: https://github.com/JuliaLang/utf8proc/issues/94
|
||||||
[#99]: https://github.com/JuliaLang/utf8proc/issues/99
|
[#99]: https://github.com/JuliaLang/utf8proc/issues/99
|
||||||
[#113]: https://github.com/JuliaLang/utf8proc/issues/113
|
[#113]: https://github.com/JuliaLang/utf8proc/issues/113
|
||||||
|
[#121]: https://github.com/JuliaLang/utf8proc/issues/121
|
||||||
|
[#123]: https://github.com/JuliaLang/utf8proc/issues/123
|
||||||
[#125]: https://github.com/JuliaLang/utf8proc/issues/125
|
[#125]: https://github.com/JuliaLang/utf8proc/issues/125
|
||||||
[#128]: https://github.com/JuliaLang/utf8proc/issues/128
|
[#128]: https://github.com/JuliaLang/utf8proc/issues/128
|
||||||
|
[#132]: https://github.com/JuliaLang/utf8proc/issues/132
|
||||||
|
[#133]: https://github.com/JuliaLang/utf8proc/issues/133
|
||||||
|
|||||||
@ -71,9 +71,9 @@
|
|||||||
/** 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 1
|
#define UTF8PROC_VERSION_MINOR 2
|
||||||
/** 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 1
|
#define UTF8PROC_VERSION_PATCH 0
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user