From 08d36110c5670c815ad6d6f969e578049d209080 Mon Sep 17 00:00:00 2001 From: "K.Kosako" Date: Fri, 15 Apr 2022 22:59:40 +0900 Subject: [PATCH] setup 6.9.8 --- CMakeLists.txt | 2 +- README.md | 15 ++------------- configure.ac | 4 ++-- src/oniguruma.h | 4 ++-- 4 files changed, 7 insertions(+), 18 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0de2edf..db6b0a77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1) project(oniguruma - VERSION 6.9.7 + VERSION 6.9.8 LANGUAGES C) set(PACKAGE onig) diff --git a/README.md b/README.md index f6f9bb2a..4b6a4637 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,14 @@ 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.8 (== Master branch / unreleased) ------------- * Update Unicode version 14.0.0 * Whole options * (?C) : ONIG_OPTION_DONT_CAPTURE_GROUP * (?I) : ONIG_OPTION_IGNORECASE_IS_ASCII * (?L) : ONIG_OPTION_FIND_LONGEST +* Fixed some problems found by OSS-Fuzz Version 6.9.7 @@ -112,18 +113,6 @@ Version 6.9.2 (Reiwa) * NEW: Unicode Text Segment mode option (?y{g}) (?y{w}) (*original) -Version 6.9.1 -------------- - -* Speed improvement (* especially UTF-8) - - -Version 6.9.0 -------------- - -* Update Unicode version 11.0.0 -* NEW: add Emoji properties - License ------- diff --git a/configure.ac b/configure.ac index 1afa37e6..079fef9a 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.7) +AC_INIT(onig, 6.9.8) AC_CONFIG_MACRO_DIR([m4]) @@ -57,7 +57,7 @@ fi dnl Checks for programs. AC_PROG_CC LT_INIT -LTVERSION="7:0:2" +LTVERSION="8:0:3" AC_SUBST(LTVERSION) AC_PROG_INSTALL diff --git a/src/oniguruma.h b/src/oniguruma.h index 9b51e8db..096ba7dc 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 7 +#define ONIGURUMA_VERSION_TEENY 8 -#define ONIGURUMA_VERSION_INT 60907 +#define ONIGURUMA_VERSION_INT 60908 #ifndef P_ #if defined(__STDC__) || defined(_WIN32)