Skip to content

Commit

Permalink
setup 6.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kkos committed Oct 7, 2020
1 parent b39be8f commit 3964046
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
project(oniguruma
VERSION 6.9.5
VERSION 6.9.6
LANGUAGES C)

set(PACKAGE onig)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Supported character encodings:
* doc/SYNTAX.md: contributed by seanofw


Master branch
Version 6.9.6
-------------
* In a Unix environment, 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". "--enable-posix-api=yes" only supports source-level compatibility for POSIX API.
* In a Unix environment, 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". "--enable-posix-api=yes" only supports source-level compatibility for POSIX API since 6.9.6.

* NEW: configure option --enable-binary-compatible-posix-api=[yes/no]
* NEW API: Limiting the maximum number of calls of subexp-call
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(onig, 6.9.5)
AC_INIT(onig, 6.9.6)

AC_CONFIG_MACRO_DIR([m4])

Expand Down Expand Up @@ -57,7 +57,7 @@ fi
dnl Checks for programs.
AC_PROG_CC
LT_INIT
LTVERSION="5:0:0"
LTVERSION="6:0:1"
AC_SUBST(LTVERSION)

AC_PROG_INSTALL
Expand Down
4 changes: 2 additions & 2 deletions src/oniguruma.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ extern "C" {
#define ONIGURUMA
#define ONIGURUMA_VERSION_MAJOR 6
#define ONIGURUMA_VERSION_MINOR 9
#define ONIGURUMA_VERSION_TEENY 5
#define ONIGURUMA_VERSION_TEENY 6

#define ONIGURUMA_VERSION_INT 60905
#define ONIGURUMA_VERSION_INT 60906

#ifndef P_
#if defined(__STDC__) || defined(_WIN32)
Expand Down

0 comments on commit 3964046

Please sign in to comment.