setup 6.9.3

This commit is contained in:
K.Kosako
2019-08-05 14:53:41 +09:00
parent 9e2dff618e
commit 813592905c
6 changed files with 41 additions and 38 deletions

View 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)

View File

@ -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()

View 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])

View 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>

View 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>

View 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)