Skip to content

Commit

Permalink
Update for the libunibreak 5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adah1972 committed Nov 8, 2021
1 parent 7f1e566 commit c8fbb31
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 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.3
PROJECT_NUMBER = 5.0

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

- Update the data to conform to Unicode 14
- Add per_code_point variants of utf8 and utf16 functions
- Do not always break after the last character
- Clean up code and test

New in libunibreak 4.3

- Update the data to conform to Unicode 13
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.3],[wuyongwei@gmail.com])
AC_INIT([libunibreak],[5.0],[wuyongwei@gmail.com])
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 @@ -8,7 +8,7 @@ include_HEADERS = \
lib_LTLIBRARIES = libunibreak.la

libunibreak_la_CFLAGS = -W -Wall
libunibreak_la_LDFLAGS = -no-undefined -version-info 4:3:1
libunibreak_la_LDFLAGS = -no-undefined -version-info 5:0:0
libunibreak_la_SOURCES = \
unibreakbase.c \
unibreakdef.c \
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-2020 Wu Yongwei <wuyongwei at gmail dot com>
* Copyright (C) 2015-2021 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 0x0403 /**< Version of the libunibreak */
#define UNIBREAK_VERSION 0x0500 /**< Version of the libunibreak */
extern const int unibreak_version;

#ifndef UNIBREAK_UTF_TYPES_DEFINED
Expand Down

0 comments on commit c8fbb31

Please sign in to comment.