NEWS and version bump for 2.0.1 release, to come out shortly
This commit is contained in:
parent
289ce5e041
commit
f0bf106569
@ -9,7 +9,7 @@ project (utf8proc C)
|
|||||||
# Be sure to also update these in Makefile!
|
# Be sure to also update these in Makefile!
|
||||||
set(SO_MAJOR 2)
|
set(SO_MAJOR 2)
|
||||||
set(SO_MINOR 0)
|
set(SO_MINOR 0)
|
||||||
set(SO_PATCH 0)
|
set(SO_PATCH 1)
|
||||||
|
|
||||||
add_definitions (
|
add_definitions (
|
||||||
-DUTF8PROC_EXPORTS
|
-DUTF8PROC_EXPORTS
|
||||||
|
|||||||
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.0.0
|
lib/libutf8proc.so -> libutf8proc.so.2.0.1
|
||||||
lib/libutf8proc.so.2 -> libutf8proc.so.2.0.0
|
lib/libutf8proc.so.2 -> libutf8proc.so.2.0.1
|
||||||
lib/libutf8proc.so.2.0.0
|
lib/libutf8proc.so.2.0.1
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -21,7 +21,7 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
|
|||||||
# Be sure to also update these in MANIFEST and CMakeLists.txt!
|
# Be sure to also update these in MANIFEST and CMakeLists.txt!
|
||||||
MAJOR=2
|
MAJOR=2
|
||||||
MINOR=0
|
MINOR=0
|
||||||
PATCH=0
|
PATCH=1
|
||||||
|
|
||||||
OS := $(shell uname)
|
OS := $(shell uname)
|
||||||
ifeq ($(OS),Darwin) # MacOS X
|
ifeq ($(OS),Darwin) # MacOS X
|
||||||
|
|||||||
7
NEWS.md
7
NEWS.md
@ -1,5 +1,11 @@
|
|||||||
# utf8proc release history #
|
# utf8proc release history #
|
||||||
|
|
||||||
|
## Version 2.0.1 ##
|
||||||
|
|
||||||
|
2016-07-13:
|
||||||
|
|
||||||
|
- Bug fix in `utf8proc_grapheme_break_stateful` ([#77]).
|
||||||
|
|
||||||
## Version 2.0 ##
|
## Version 2.0 ##
|
||||||
|
|
||||||
2016-07-13:
|
2016-07-13:
|
||||||
@ -254,3 +260,4 @@ Release of version 1.0.1
|
|||||||
[#66]: https://github.com/JuliaLang/utf8proc/issues/66
|
[#66]: https://github.com/JuliaLang/utf8proc/issues/66
|
||||||
[#68]: https://github.com/JuliaLang/utf8proc/issues/68
|
[#68]: https://github.com/JuliaLang/utf8proc/issues/68
|
||||||
[#70]: https://github.com/JuliaLang/utf8proc/issues/70
|
[#70]: https://github.com/JuliaLang/utf8proc/issues/70
|
||||||
|
[#77]: https://github.com/JuliaLang/utf8proc/issues/77
|
||||||
|
|||||||
@ -72,7 +72,7 @@
|
|||||||
/** 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 0
|
#define UTF8PROC_VERSION_MINOR 0
|
||||||
/** 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 1
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user