Skip to content

Commit

Permalink
Update for the libunibreak 6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adah1972 committed Feb 27, 2024
1 parent cb3013b commit 45b77ae
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = libunibreak
PROJECT_NUMBER = 5.1
PROJECT_NUMBER = 6.0
PROJECT_BRIEF =
PROJECT_LOGO =
OUTPUT_DIRECTORY = doc
Expand Down
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
New in libunibreak 6.0

- Add East Asian Width support and improve line breaking algorithm
- Add Indic Conjunct Break support and improve grapheme breaking algorithm
- Update the data (except line breaking) to conform to Unicode 15.1
- Include test data files in the project
- Make minor code adjustment and refactoring

New in libunibreak 5.1

- Speed up line-break property lookup
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],[5.1],[wuyongwei@gmail.com])
AC_INIT([libunibreak],[6.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 5:1:0
libunibreak_la_LDFLAGS = -no-undefined -version-info 6: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-2022 Wu Yongwei <wuyongwei at gmail dot com>
* Copyright (C) 2015-2024 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 0x0501 /**< Version of the libunibreak */
#define UNIBREAK_VERSION 0x0600 /**< Version of the libunibreak */
extern const int unibreak_version;

#ifndef UNIBREAK_UTF_TYPES_DEFINED
Expand Down

0 comments on commit 45b77ae

Please sign in to comment.