Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 08d3611

Browse files
committed
setup 6.9.8
1 parent 57dd7d6 commit 08d3611

File tree

4 files changed

+7
-18
lines changed

4 files changed

+7
-18
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.1)
22
project(oniguruma
3-
VERSION 6.9.7
3+
VERSION 6.9.8
44
LANGUAGES C)
55

66
set(PACKAGE onig)

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ Notice (from 6.9.6)
3737
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)
3838

3939

40-
Master branch
40+
Version 6.9.8 (== Master branch / unreleased)
4141
-------------
4242
* Update Unicode version 14.0.0
4343
* Whole options
4444
* (?C) : ONIG_OPTION_DONT_CAPTURE_GROUP
4545
* (?I) : ONIG_OPTION_IGNORECASE_IS_ASCII
4646
* (?L) : ONIG_OPTION_FIND_LONGEST
47+
* Fixed some problems found by OSS-Fuzz
4748

4849

4950
Version 6.9.7
@@ -112,18 +113,6 @@ Version 6.9.2 (Reiwa)
112113
* NEW: Unicode Text Segment mode option (?y{g}) (?y{w}) (*original)
113114

114115

115-
Version 6.9.1
116-
-------------
117-
118-
* Speed improvement (* especially UTF-8)
119-
120-
121-
Version 6.9.0
122-
-------------
123-
124-
* Update Unicode version 11.0.0
125-
* NEW: add Emoji properties
126-
127116

128117
License
129118
-------

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT(onig, 6.9.7)
2+
AC_INIT(onig, 6.9.8)
33

44
AC_CONFIG_MACRO_DIR([m4])
55

@@ -57,7 +57,7 @@ fi
5757
dnl Checks for programs.
5858
AC_PROG_CC
5959
LT_INIT
60-
LTVERSION="7:0:2"
60+
LTVERSION="8:0:3"
6161
AC_SUBST(LTVERSION)
6262

6363
AC_PROG_INSTALL

src/oniguruma.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ extern "C" {
3636
#define ONIGURUMA
3737
#define ONIGURUMA_VERSION_MAJOR 6
3838
#define ONIGURUMA_VERSION_MINOR 9
39-
#define ONIGURUMA_VERSION_TEENY 7
39+
#define ONIGURUMA_VERSION_TEENY 8
4040

41-
#define ONIGURUMA_VERSION_INT 60907
41+
#define ONIGURUMA_VERSION_INT 60908
4242

4343
#ifndef P_
4444
#if defined(__STDC__) || defined(_WIN32)

0 commit comments

Comments
 (0)