setup 6.9.3 v6.9.3
authorK.Kosako <kosako@sofnec.co.jp>
Mon, 5 Aug 2019 05:53:41 +0000 (14:53 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Mon, 5 Aug 2019 05:53:41 +0000 (14:53 +0900)
CMakeLists.txt
README.md
configure.ac
index.html
index_ja.html
src/oniguruma.h

index ae26e288e138f2c8fd8e2c3966fcea09f772d824..c59bfe3b9464c33e5889abf9f4e1f10024c7c1aa 100644 (file)
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.1)
 project(oniguruma
-  VERSION 6.9.2
+  VERSION 6.9.3
   LANGUAGES C)
 
 set(PACKAGE onig)
index 3f3ccbd1bea9275b7986cffca38c052b67039315..6a4783b8e9496f9bbefb9b6af8b7cfcebb3b3437 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,15 +27,16 @@ Supported character encodings:
 * doc/SYNTAX.md: contributed by seanofw
 
 
-Master branch
--------------
+Version 6.9.3 (security fix release)
+------------------------------------
 
 * Fixed CVE-2019-13224
 * Fixed CVE-2019-13225
+* Fixed many problems (found by libfuzzer programs)
 
 
-New feature of version 6.9.2 (Reiwa)
------------------------------------
+Version 6.9.2 (Reiwa)
+---------------------
 
 * add doc/SYNTAX.md
 * Update Unicode version 12.1.0
@@ -46,35 +47,35 @@ New feature of version 6.9.2 (Reiwa)
   (Unicode Standard Annex #29 [http://unicode.org/reports/tr29/])
 
 
-New feature of version 6.9.1
---------------------------
+Version 6.9.1
+-------------
 
 * Speed improvement (* especially UTF-8)
 
 
-New feature of version 6.9.0
---------------------------
+Version 6.9.0
+-------------
 
 * Update Unicode version 11.0.0
 * NEW: add Emoji properties
 
 
-New feature of version 6.8.2
---------------------------
+Version 6.8.2
+-------------
 
 * Fix: #80 UChar in header causes issue
 * NEW API: onig_set_callout_user_data_of_match_param()  (* omission in 6.8.0)
 * add doc/CALLOUTS.API and doc/CALLOUTS.API.ja
 
 
-New feature of version 6.8.1
---------------------------
+Version 6.8.1
+-------------
 
 * Update shared library version to 5.0.0 for API incompatible changes from 6.7.1
 
 
-New feature of version 6.8.0
---------------------------
+Version 6.8.0
+-------------
 
 * Retry-limit-in-match function enabled by default
 * NEW: configure option --enable-posix-api=no  (* enabled by default)
@@ -85,14 +86,14 @@ New feature of version 6.8.0
 * Examples of Callouts program: [callout.c](sample/callout.c), [count.c](sample/count.c), [echo.c](sample/echo.c)
 
 
-New feature of version 6.7.1
---------------------------
+Version 6.7.1
+-------------
 
 * NEW: Mechanism of retry-limit-in-match (* disabled by default)
 
 
-New feature of version 6.7.0
---------------------------
+Version 6.7.0
+-------------
 
 * NEW: hexadecimal codepoint \uHHHH
 * NEW: add ONIG_SYNTAX_ONIGURUMA (== ONIG_SYNTAX_DEFAULT)
@@ -100,8 +101,8 @@ New feature of version 6.7.0
 * Reduced size of object file
 
 
-New feature of version 6.6.0
---------------------------
+Version 6.6.0
+-------------
 
 * NEW: ASCII only mode options for character type/property (?WDSP)
 * NEW: Extended Grapheme Cluster boundary \y, \Y
@@ -109,8 +110,8 @@ New feature of version 6.6.0
 * Range-clear (Absent-clear) operator restores previous range in retractions.
 
 
-New feature of version 6.5.0
---------------------------
+Version 6.5.0
+-------------
 
 * NEW: \K (keep)
 * NEW: \R (general newline) \N (no newline)
@@ -122,16 +123,16 @@ New feature of version 6.5.0
 * NEW: Absent stopper (?~|absent)     (*original)
 
 
-New feature of version 6.4.0
---------------------------
+Version 6.4.0
+-------------
 
 * Fix fatal problem of endless repeat on Windows
 * NEW: call zero (call the total regexp) \g<0>
 * NEW: relative backref/call by positive number \k<+n>, \g<+n>
 
 
-New feature of version 6.3.0
---------------------------
+Version 6.3.0
+-------------
 
 * NEW: octal codepoint \o{.....}
 * Fixed CVE-2017-9224
@@ -142,20 +143,20 @@ New feature of version 6.3.0
 * Fixed CVE-2017-9229
 
 
-New feature of version 6.1.2
---------------------------
+Version 6.1.2
+-------------
 
 * allow word bound, word begin and word end in look-behind.
 * NEW option: ONIG_OPTION_CHECK_VALIDITY_OF_STRING
 
-New feature of version 6.1
---------------------------
+Version 6.1
+-----------
 
 * improved doc/RE
 * NEW API: onig_scan()
 
-New feature of version 6.0
---------------------------
+Version 6.0
+-----------
 
 * Update Unicode 8.0 Property/Case-folding
 * NEW API: onig_unicode_define_user_property()
index 010a0d8f2c35c097d6e12e1d1c2757eff6e33430..62c9fa59cea1996a4ea73924affb10aacbb6b2c1 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(onig, 6.9.2)
+AC_INIT(onig, 6.9.3)
 
 AC_CONFIG_MACRO_DIR([m4])
 
index 782e8dd3324e1884d517e108e5cfd4341bc0e157..58ba66d3bde36619877892fc7b1c3869239e73bd 100644 (file)
@@ -8,7 +8,7 @@
 <h1>Oniguruma</h1> (<a href="index_ja.html">Japanese</a>)
 
 <p>
-(c) K.Kosako, updated at: 2019/05/14
+(c) K.Kosako, updated at: 2019/08/05
 </p>
 
 <dl>
@@ -16,6 +16,7 @@
 <dt><b>What's new</b>
 </font>
 <ul>
+<li>2019/08/06: Version 6.9.3 released.</li>
 <li>2019/05/07: Version 6.9.2 released.</li>
 <li>2018/12/11: Version 6.9.1 released.</li>
 <li>2018/09/03: Version 6.9.0 released.</li>
index 1daafe75ff8db431e9de4ce5f77b428e3e81d933..6b75c6c2ceb2f7e7023daec6de9e18a309a9d05d 100644 (file)
@@ -8,7 +8,7 @@
 <h1>鬼車</h1>
 
 <p>
-(c) K.Kosako, 最終更新: 2019/05/14
+(c) K.Kosako, 最終更新: 2019/08/05
 </p>
 
 <dl>
@@ -16,6 +16,7 @@
 <dt><b>更新情報</b>
 </font>
 <ul>
+<li>2019/08/06: Version 6.9.3 リリース</li>
 <li>2019/05/07: Version 6.9.2 リリース</li>
 <li>2018/12/11: Version 6.9.1 リリース</li>
 <li>2018/09/03: Version 6.9.0 リリース</li>
index bb5fe74f31ae21711754d9a305b41f3e69a87769..90cf2d9f1c3eab194737a86d4311860fa1ae1978 100644 (file)
@@ -36,9 +36,9 @@ extern "C" {
 #define ONIGURUMA
 #define ONIGURUMA_VERSION_MAJOR   6
 #define ONIGURUMA_VERSION_MINOR   9
-#define ONIGURUMA_VERSION_TEENY   2
+#define ONIGURUMA_VERSION_TEENY   3
 
-#define ONIGURUMA_VERSION_INT     60902
+#define ONIGURUMA_VERSION_INT     60903
 
 #ifndef P_
 #if defined(__STDC__) || defined(_WIN32)