Skip to content

Commit

Permalink
Update for the libunibreak 4.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
adah1972 committed Sep 9, 2018
1 parent 0fcd5c7 commit 9c13f23
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PROJECT_NAME = libunibreak
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 4.0
PROJECT_NUMBER = 4.1

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
10 changes: 9 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
New in libunibreak 4.1

- Update the code and data to conform to Unicode 11.0.0, especially
adding support for extended pictographs in word and grapheme breaking
- ZWJ support has been much improved (it was broken)
- Make minor tweaks to the project files

New in libunibreak 4.0

- Update the code and data to conform to Unicode 9.0.0
Expand All @@ -22,7 +29,8 @@ New in libunibreak 1.1
New in libunibreak 1.0

- Add word breaking support
- Change the library name to "libunibreak", while keeping maximum compatibility
- Change the library name to "libunibreak", while keeping maximum
compatibility
- Add pkg-config support

New in liblinebreak 2.1
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.57)
AC_INIT([libunibreak],[4.0],[[email protected]])
AC_INIT([libunibreak],[4.1],[[email protected]])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/linebreak.c])
AC_CONFIG_HEADERS([config.h])
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include_HEADERS = \
lib_LTLIBRARIES = libunibreak.la

libunibreak_la_CFLAGS = -W -Wall
libunibreak_la_LDFLAGS = -no-undefined -version-info 4:0:1
libunibreak_la_LDFLAGS = -no-undefined -version-info 4:1:1
libunibreak_la_SOURCES = \
unibreakbase.c \
unibreakdef.c \
Expand Down
2 changes: 1 addition & 1 deletion src/unibreakbase.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Break processing in a Unicode sequence. Designed to be used in a
* generic text renderer.
*
* Copyright (C) 2015-2016 Wu Yongwei <wuyongwei at gmail dot com>
* Copyright (C) 2015-2018 Wu Yongwei <wuyongwei at gmail dot com>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author be held liable for any damages
Expand Down
4 changes: 2 additions & 2 deletions src/unibreakbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Break processing in a Unicode sequence. Designed to be used in a
* generic text renderer.
*
* Copyright (C) 2015-2016 Wu Yongwei <wuyongwei at gmail dot com>
* Copyright (C) 2015-2018 Wu Yongwei <wuyongwei at gmail dot com>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author be held liable for any damages
Expand Down Expand Up @@ -39,7 +39,7 @@
extern "C" {
#endif

#define UNIBREAK_VERSION 0x0400 /**< Version of the library linebreak */
#define UNIBREAK_VERSION 0x0401 /**< Version of the libunibreak */
extern const int unibreak_version;

#ifndef UNIBREAK_UTF_TYPES_DEFINED
Expand Down

0 comments on commit 9c13f23

Please sign in to comment.