]> granicus.if.org Git - onig/commitdiff
update for release 6.0.0
authorkosako <kosako@sofnec.co.jp>
Fri, 6 May 2016 07:52:59 +0000 (16:52 +0900)
committerkosako <kosako@sofnec.co.jp>
Fri, 6 May 2016 07:52:59 +0000 (16:52 +0900)
HISTORY
README
README.ja
README.md
index.html
index_ja.html

diff --git a/HISTORY b/HISTORY
index 0b6b586d1265984cf1f874eb4a70110b5bf76928..60f096eac81a27ae4fdcb0af4d4673344a4201ea 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -1,5 +1,7 @@
 History
 
+2016/05/09: Version 6.0.0
+
 2015/07/13: change mail address.
 
 2014/12/12: Version 5.9.6
diff --git a/README b/README
index a490b60888d1e59206cde52900376fd4a8e61a66..a3d3ab487a6fea7ccdb396adda473f33300e1fcb 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README  2016/04/19
+README  2016/05/06
 
 Oniguruma  ----   (C) K.Kosako <kkosako0@gmail.com>
 
@@ -102,6 +102,7 @@ Sample Programs
   sample/posix.c     POSIX API sample.
   sample/sql.c       example of the variable meta characters.
                      (SQL-like pattern matching)
+  sample/user_property.c  example of user defined Unicode property.
 
 Test Programs
   sample/syntax.c    Perl, Java and ASIS syntax test.
@@ -167,7 +168,7 @@ Source Files
   utf16_le.c         UTF-16LE encoding.
   utf32_be.c         UTF-32BE encoding.
   utf32_le.c         UTF-32LE encoding.
-  unicode.c          Unicode information data.
+  unicode.c          common codes of Unicode encoding.
 
   win32/Makefile     Makefile for Win32 (VC++)
   win32/config.h     config.h for Win32
index 404cf9fcdf109be97a419190e18909a2820dcc55..826a8e74df18daf5a170f2de92a00cc87ea37ed2 100644 (file)
--- a/README.ja
+++ b/README.ja
@@ -1,4 +1,4 @@
-README.ja  2016/04/19
+README.ja  2016/05/06
 
 µ´¼Ö  ----   (C) K.Kosako <kkosako0@gmail.com>
 
@@ -23,7 +23,7 @@ https://github.com/kkos/oniguruma
 
 ¥é¥¤¥»¥ó¥¹
 
-  BSD¥é¥¤¥»¥ó¥¹¤Ë½¾¤¦¡£
+  BSD¥é¥¤¥»¥ó¥¹
 
 
 ¥¤¥ó¥¹¥È¡¼¥ë
@@ -107,6 +107,8 @@ https://github.com/kkos/oniguruma
   sample/listcap.c   Êá³ÍÍúÎòµ¡Ç½¤Î»ÈÍÑÎã
   sample/posix.c     POSIX API»ÈÍÑÎã
   sample/sql.c       ²ÄÊѥ᥿ʸ»úµ¡Ç½»ÈÍÑÎã (SQL-like ¥Ñ¥¿¡¼¥ó)
+  sample/user_property.c ¥æ¡¼¥¶ÄêµÁUnicode¥×¥í¥Ñ¥Æ¥£¤Î»ÈÍÑÎã
+
 
 ¥Æ¥¹¥È¥×¥í¥°¥é¥à
   sample/syntax.c    Perl¡¢Java¡¢ASISʸˡ¤Î¥Æ¥¹¥È
@@ -172,7 +174,7 @@ https://github.com/kkos/oniguruma
   utf16_le.c         UTF-16LE ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°
   utf32_be.c         UTF-32BE ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°
   utf32_le.c         UTF-32LE ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°
-  unicode.c          Unicode¾ðÊó
+  unicode.c          Unicode¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î¶¦Ä̽èÍý
 
   win32/Makefile     Win32ÍÑ Makefile (for VC++)
   win32/config.h     Win32ÍÑ config.h
index b361f616226a2dda15b9dac9fff563122f6c2221..dfd672391140dfe41d2df2fb88492c6992082288 100644 (file)
--- a/README.md
+++ b/README.md
@@ -20,6 +20,13 @@ Supported character encodings:
 * CP1251:  contributed by Byte
 
 
+New feature of version 6.0
+--------------------------
+
+* Update Unicode 8.0 Property/Case-folding
+* NEW API: onig_unicode_define_user_property()
+
+
 License
 -------
 
@@ -100,14 +107,15 @@ Usage
 Sample Programs
 ---------------
 
-|File               |Description                              |
-|:------------------|:----------------------------------------|
-|sample/simple.c    |example of the minimum (Oniguruma API)   |
-|sample/names.c     |example of the named group callback.     |
-|sample/encode.c    |example of some encodings.               |
-|sample/listcap.c   |example of the capture history.          |
-|sample/posix.c     |POSIX API sample.                        |
-|sample/sql.c       |example of the variable meta characters. |
+|File                  |Description                               |
+|:---------------------|:-----------------------------------------|
+|sample/simple.c       |example of the minimum (Oniguruma API)    |
+|sample/names.c        |example of the named group callback.      |
+|sample/encode.c       |example of some encodings.                |
+|sample/listcap.c      |example of the capture history.           |
+|sample/posix.c        |POSIX API sample.                         |
+|sample/sql.c          |example of the variable meta characters.  |
+|sample/user_property.c|example of user defined Unicode property. |
 
 
 Test Programs
@@ -176,6 +184,6 @@ Source Files
 |utf16_le.c         |UTF-16LE encoding                                       |
 |utf32_be.c         |UTF-32BE encoding                                       |
 |utf32_le.c         |UTF-32LE encoding                                       |
-|unicode.c          |Unicode information data                                |
+|unicode.c          |common codes of Unicode encoding                        |
 |win32/Makefile     |Makefile for Win32 (VC++)                               |
 |win32/config.h     |config.h for Win32                                      |
index f4c2cb9290c4a912d770ba0fa11f221ac31a4a06..9082a3f66b0a9aff80f9db7a5d3685541acaa099 100644 (file)
@@ -8,7 +8,7 @@
 <h1>Oniguruma</h1> (<a href="index_ja.html">Japanese</a>)
 
 <p>
-(c) K.Kosako, updated at: 2014/12/12
+(c) K.Kosako, updated at: 2016/05/06
 </p>
 
 <dl>
@@ -16,6 +16,7 @@
 <dt><b>What's new</b>
 </font>
 <ul>
+<li>2016/05/09: Version 6.0.0 released.</li>
 <li>2014/12/12: Version 5.9.6 released.</li>
 </ul>
 </dl>
index dba592d75025c796ff4b2011cc973f5160a92ab9..3b089fc26a8b08ad2cdbeee6e603c82eb8c2cfbe 100644 (file)
@@ -8,7 +8,7 @@
 <h1>鬼車</h1>
 
 <p>
-(c) K.Kosako, 最終更新: 2014/12/12
+(c) K.Kosako, 最終更新: 2016/05/06
 </p>
 
 <dl>
@@ -16,6 +16,7 @@
 <dt><b>更新情報</b>
 </font>
 <ul>
+<li>2016/05/09: Version 6.0.0 リリース</li>
 <li>2014/12/12: Version 5.9.6 リリース</li>
 </ul>
 </dl>