version bump to 2.1.1 (#131)
This commit is contained in:
parent
3e6230d9bf
commit
d688ac1226
@ -11,7 +11,7 @@ project (utf8proc C)
|
|||||||
# 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 1)
|
||||||
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.1.0
|
lib/libutf8proc.so -> libutf8proc.so.2.1.1
|
||||||
lib/libutf8proc.so.2 -> libutf8proc.so.2.1.0
|
lib/libutf8proc.so.2 -> libutf8proc.so.2.1.1
|
||||||
lib/libutf8proc.so.2.1.0
|
lib/libutf8proc.so.2.1.1
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -21,7 +21,7 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
|
|||||||
# 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=1
|
||||||
PATCH=0
|
PATCH=1
|
||||||
|
|
||||||
OS := $(shell uname)
|
OS := $(shell uname)
|
||||||
ifeq ($(OS),Darwin) # MacOS X
|
ifeq ($(OS),Darwin) # MacOS X
|
||||||
|
|||||||
19
NEWS.md
19
NEWS.md
@ -1,5 +1,13 @@
|
|||||||
# utf8proc release history #
|
# utf8proc release history #
|
||||||
|
|
||||||
|
## Version 2.1.1 ##
|
||||||
|
|
||||||
|
2018-04-27
|
||||||
|
|
||||||
|
- Fixed composition bug ([#128]).
|
||||||
|
|
||||||
|
- Minor build fixes ([#94], [#99], [#113], [#125]).
|
||||||
|
|
||||||
## Version 2.1 ##
|
## Version 2.1 ##
|
||||||
|
|
||||||
2016-12-26:
|
2016-12-26:
|
||||||
@ -297,7 +305,12 @@ Release of version 1.0.1
|
|||||||
[#78]: https://github.com/JuliaLang/utf8proc/issues/78
|
[#78]: https://github.com/JuliaLang/utf8proc/issues/78
|
||||||
[#79]: https://github.com/JuliaLang/utf8proc/issues/79
|
[#79]: https://github.com/JuliaLang/utf8proc/issues/79
|
||||||
[#80]: https://github.com/JuliaLang/utf8proc/issues/80
|
[#80]: https://github.com/JuliaLang/utf8proc/issues/80
|
||||||
[#84]: https://github.com/JuliaLang/utf8proc/pull/84
|
[#84]: https://github.com/JuliaLang/utf8proc/issues/84
|
||||||
[#88]: https://github.com/JuliaLang/utf8proc/pull/88
|
[#88]: https://github.com/JuliaLang/utf8proc/issues/88
|
||||||
[#89]: https://github.com/JuliaLang/utf8proc/pull/89
|
[#89]: https://github.com/JuliaLang/utf8proc/issues/89
|
||||||
[#90]: https://github.com/JuliaLang/utf8proc/issues/90
|
[#90]: https://github.com/JuliaLang/utf8proc/issues/90
|
||||||
|
[#94]: https://github.com/JuliaLang/utf8proc/issues/94
|
||||||
|
[#99]: https://github.com/JuliaLang/utf8proc/issues/99
|
||||||
|
[#113]: https://github.com/JuliaLang/utf8proc/issues/113
|
||||||
|
[#125]: https://github.com/JuliaLang/utf8proc/issues/125
|
||||||
|
[#128]: https://github.com/JuliaLang/utf8proc/issues/128
|
||||||
|
|||||||
@ -73,7 +73,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 1
|
#define UTF8PROC_VERSION_MINOR 1
|
||||||
/** 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