aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK.Kosako <kkosako0@gmail.com>2023-10-05 00:12:00 +0900
committerK.Kosako <kkosako0@gmail.com>2023-10-05 00:12:00 +0900
commit82d54c1aeae54b9350ecb0c96df7302bb0041abb (patch)
treeff648c1bb8e83003efe94970a148ea1fafe64a18
parent2e34176b8a05e8a647f941bc67501516e66500bf (diff)
downloadoniguruma-82d54c1aeae54b9350ecb0c96df7302bb0041abb.zip
oniguruma-82d54c1aeae54b9350ecb0c96df7302bb0041abb.tar.gz
oniguruma-82d54c1aeae54b9350ecb0c96df7302bb0041abb.tar.bz2
setup 6.9.9
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md20
-rw-r--r--configure.ac4
-rw-r--r--src/oniguruma.h4
4 files changed, 6 insertions, 24 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 03e068d..3f695c4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
project(oniguruma
- VERSION 6.9.8
+ VERSION 6.9.9
LANGUAGES C)
set(PACKAGE onig)
diff --git a/README.md b/README.md
index 44f19ec..594a79f 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ Notice (from 6.9.6)
When using configure script, if you have the POSIX API enabled in an earlier version (disabled by default in 6.9.5) and you need application binary compatibility with the POSIX API, specify "--enable-binary-compatible-posix-api=yes" instead of "--enable-posix-api=yes". Starting in 6.9.6, "--enable-posix-api=yes" only supports source-level compatibility for 6.9.5 and earlier about POSIX API. (Issue #210)
-Master branch
+Version 6.9.9
-------------
* Update Unicode version 15.1.0
* NEW API: ONIG_OPTION_MATCH_WHOLE_STRING
@@ -73,24 +73,6 @@ Version 6.9.6
* Under cygwin and mingw, generate and install the libonig.def file (Issue #220)
-Version 6.9.5 revised 1
------------------------
-
-* Fixed Issue #192
-
-
-Version 6.9.5
--------------
-
-* POSIX API disabled by default for Unix (* Enabled by: configure --enable-posix-api=yes)
-* Update Unicode version 13.0.0
-* NEW: Code point sequence notation \x{HHHH HHHH ...}, \o{OOOO OOOO ...}
-* NEW API: retry limit in search functions
-* NEW API: maximum nesting level of subexp call
-* Fixed behavior of isolated options in Perl and Java syntaxes. /...(?i).../
-
-
-
License
-------
diff --git a/configure.ac b/configure.ac
index d6af76b..470fa3c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(onig, 6.9.8)
+AC_INIT(onig, 6.9.9)
AC_CONFIG_MACRO_DIR([m4])
@@ -54,7 +54,7 @@ fi
dnl Checks for programs.
AC_PROG_CC
LT_INIT
-LTVERSION="8:0:3"
+LTVERSION="9:0:4"
AC_SUBST(LTVERSION)
AC_PROG_INSTALL
diff --git a/src/oniguruma.h b/src/oniguruma.h
index ffca9a1..66da319 100644
--- a/src/oniguruma.h
+++ b/src/oniguruma.h
@@ -36,9 +36,9 @@ extern "C" {
#define ONIGURUMA
#define ONIGURUMA_VERSION_MAJOR 6
#define ONIGURUMA_VERSION_MINOR 9
-#define ONIGURUMA_VERSION_TEENY 8
+#define ONIGURUMA_VERSION_TEENY 9
-#define ONIGURUMA_VERSION_INT 60908
+#define ONIGURUMA_VERSION_INT 60909
#ifndef P_
#if defined(__STDC__) || defined(_WIN32)