Skip to content

Commit

Permalink
Update for the libunibreak 6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adah1972 committed Mar 2, 2024
1 parent f79ad51 commit 304585d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 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 = 6.0
PROJECT_NUMBER = 6.1
PROJECT_BRIEF =
PROJECT_LOGO =
OUTPUT_DIRECTORY = doc
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
New in libunibreak 6.1

- Optimize the size of Unicode data
- Refactor the Unicode data generation scripts
- Make minor adjustments and fixes

New in libunibreak 6.0

- Add East Asian Width support and improve line breaking algorithm
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],[6.0],[wuyongwei@gmail.com])
AC_INIT([libunibreak],[6.1],[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 @@ -9,7 +9,7 @@ include_HEADERS = \
lib_LTLIBRARIES = libunibreak.la

libunibreak_la_CFLAGS = -W -Wall
libunibreak_la_LDFLAGS = -no-undefined -version-info 6:0:0
libunibreak_la_LDFLAGS = -no-undefined -version-info 6:1:0
libunibreak_la_SOURCES = \
unibreakbase.c \
unibreakdef.c \
Expand Down
2 changes: 1 addition & 1 deletion src/unibreakbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
extern "C" {
#endif

#define UNIBREAK_VERSION 0x0600 /**< Version of the libunibreak */
#define UNIBREAK_VERSION 0x0601 /**< Version of the libunibreak */
extern const int unibreak_version;

#ifndef UNIBREAK_UTF_TYPES_DEFINED
Expand Down

0 comments on commit 304585d

Please sign in to comment.