File tree Expand file tree Collapse file tree 13 files changed +36
-41
lines changed Expand file tree Collapse file tree 13 files changed +36
-41
lines changed Original file line number Diff line number Diff line change
1
+ 2015-05-10 Wu Yongwei <wuyongwei@gmail.com>
2
+
3
+ Update for the libunibreak 3.0 release.
4
+ * NEWS: Add information about libunibreak 3.0.
5
+ * src/linebreak.c: Mark file version as 3.0.
6
+ * src/linebreak.h: Ditto.
7
+ * src/linebreakdef.c: Ditto.
8
+ * src/linebreakdef.h: Ditto.
9
+ * src/unibreakbase.c: Ditto.
10
+ * src/unibreakbase.h: Ditto.
11
+ * src/unibreakdef.c: Ditto.
12
+ * src/unibreakdef.h: Ditto.
13
+ * src/wordbreak.c: Ditto.
14
+ * src/wordbreak.h: Ditto.
15
+ * src/wordbreakdef.h: Ditto.
16
+
1
17
2015-04-19 Wu Yongwei <wuyongwei@gmail.com>
2
18
3
19
* LICENCE: Update copyright information.
Original file line number Diff line number Diff line change
1
+ New in libunibreak 3.0
2
+
3
+ - Update the code and data to conform to Unicode 7.0.0
4
+ - Update build scripts to fix compatibility issues
5
+ - Improve code structure
6
+ - Make a few bug fixes
7
+
1
8
New in libunibreak 1.1
2
9
3
10
- Update the code and data to conform to Unicode 6.2.0
Original file line number Diff line number Diff line change 45
45
* Implementation of the line breaking algorithm as described in Unicode
46
46
* Standard Annex 14.
47
47
*
48
- * @version 2.7 , 2015/04/18
48
+ * @version 3.0 , 2015/05/10
49
49
* @author Wu Yongwei
50
50
* @author Petr Filipsky
51
51
*/
Original file line number Diff line number Diff line change 43
43
*
44
44
* Header file for the line breaking algorithm.
45
45
*
46
- * @version 2.4 , 2015/04/18
46
+ * @version 3.0 , 2015/05/10
47
47
* @author Wu Yongwei
48
48
*/
49
49
Original file line number Diff line number Diff line change 43
43
*
44
44
* Definition of language-specific data.
45
45
*
46
- * @version 2.2, 2012/10/06
46
+ * @version 3.0, 2015/05/10
47
47
* @author Wu Yongwei
48
48
*/
49
49
Original file line number Diff line number Diff line change 45
45
* Definitions of internal data structures, declarations of global
46
46
* variables, and function prototypes for the line breaking algorithm.
47
47
*
48
- * @version 2.6 , 2015/04/18
48
+ * @version 3.0 , 2015/05/10
49
49
* @author Wu Yongwei
50
50
* @author Petr Filipsky
51
51
*/
Original file line number Diff line number Diff line change 29
29
*
30
30
* Definition of basic libunibreak information.
31
31
*
32
- * @version 1 .0, 2015/04/18
32
+ * @version 3 .0, 2015/05/10
33
33
* @author Wu Yongwei
34
34
*/
35
35
Original file line number Diff line number Diff line change 22
22
* not be misrepresented as being the original software.
23
23
* 3. This notice may not be removed or altered from any source
24
24
* distribution.
25
- *
26
- * The main reference is Unicode Standard Annex 14 (UAX #14):
27
- * <URL:http://www.unicode.org/reports/tr14/>
28
- *
29
- * When this library was designed, this annex was at Revision 19, for
30
- * Unicode 5.0.0:
31
- * <URL:http://www.unicode.org/reports/tr14/tr14-19.html>
32
- *
33
- * This library has been updated according to Revision 33, for
34
- * Unicode 7.0.0:
35
- * <URL:http://www.unicode.org/reports/tr14/tr14-33.html>
36
- *
37
- * The Unicode Terms of Use are available at
38
- * <URL:http://www.unicode.org/copyright.html>
39
25
*/
40
26
41
27
/**
42
28
* @file unibreakbase.h
43
29
*
44
30
* Header file for common definitions in the libunibreak library.
45
31
*
46
- * @version 1 .0, 2015/04/18
32
+ * @version 3 .0, 2015/05/10
47
33
* @author Wu Yongwei
48
34
*/
49
35
50
36
#ifndef UNIBREAKBASE_H
51
37
#define UNIBREAKBASE_H
52
38
53
- #include <stddef.h>
54
-
55
39
#ifdef __cplusplus
56
40
extern "C" {
57
41
#endif
Original file line number Diff line number Diff line change 29
29
*
30
30
* Definition of utility functions used by the libunibreak library.
31
31
*
32
- * @version 1 .0, 2015/04/18
32
+ * @version 3 .0, 2015/05/10
33
33
* @author Wu Yongwei
34
34
*/
35
35
Original file line number Diff line number Diff line change 22
22
* not be misrepresented as being the original software.
23
23
* 3. This notice may not be removed or altered from any source
24
24
* distribution.
25
- *
26
- * The main reference is Unicode Standard Annex 14 (UAX #14):
27
- * <URL:http://www.unicode.org/reports/tr14/>
28
- *
29
- * When this library was designed, this annex was at Revision 19, for
30
- * Unicode 5.0.0:
31
- * <URL:http://www.unicode.org/reports/tr14/tr14-19.html>
32
- *
33
- * This library has been updated according to Revision 33, for
34
- * Unicode 7.0.0:
35
- * <URL:http://www.unicode.org/reports/tr14/tr14-33.html>
36
- *
37
- * The Unicode Terms of Use are available at
38
- * <URL:http://www.unicode.org/copyright.html>
39
25
*/
40
26
41
27
/**
42
28
* @file unibreakdef.h
43
29
*
44
30
* Header file for private definitions in the libunibreak library.
45
31
*
46
- * @version 1.1 , 2015/04/19
32
+ * @version 3.0 , 2015/05/10
47
33
* @author Wu Yongwei
48
34
*/
49
35
50
36
#ifndef UNIBREAKDEF_H
51
37
#define UNIBREAKDEF_H
52
38
39
+ #include <stddef.h>
53
40
#include "unibreakbase.h"
54
41
55
42
#ifdef __cplusplus
Original file line number Diff line number Diff line change 44
44
* Implementation of the word breaking algorithm as described in Unicode
45
45
* Standard Annex 29.
46
46
*
47
- * @version 2.6 , 2015/04/18
47
+ * @version 3.0 , 2015/05/10
48
48
* @author Tom Hacohen
49
49
*/
50
50
Original file line number Diff line number Diff line change 43
43
*
44
44
* Header file for the word breaking (segmentation) algorithm.
45
45
*
46
- * @version 2.5 , 2015/04/18
46
+ * @version 3.0 , 2015/05/10
47
47
* @author Tom Hacohen
48
48
*/
49
49
Original file line number Diff line number Diff line change 32
32
*
33
33
* This library has been updated according to Revision 25, for
34
34
* Unicode 7.0.0:
35
+ * <URL:http://www.unicode.org/reports/tr29/tr29-25.html>
35
36
*
36
37
* The Unicode Terms of Use are available at
37
38
* <URL:http://www.unicode.org/copyright.html>
43
44
* Definitions of internal data structures, declarations of global
44
45
* variables, and function prototypes for the word breaking algorithm.
45
46
*
46
- * @version 2.6 , 2015/04/19
47
+ * @version 3.0 , 2015/05/10
47
48
* @author Tom Hacohen
48
49
*/
49
50
You can’t perform that action at this time.
0 commit comments