Skip to content

Commit

Permalink
setup 6.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kkos committed Mar 29, 2021
1 parent 3be99c9 commit 3bbb3d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 31 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.6
VERSION 6.9.7
LANGUAGES C)

set(PACKAGE onig)
Expand Down
26 changes: 0 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,32 +113,6 @@ Version 6.9.0
* NEW: add Emoji properties


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


Version 6.8.1
-------------

* Update shared library version to 5.0.0 for API incompatible changes from 6.7.1


Version 6.8.0
-------------

* Retry-limit-in-match function enabled by default
* NEW: configure option --enable-posix-api=no (* enabled by default)
* NEW API: onig_search_with_param(), onig_match_with_param()
* NEW: Callouts of contents (?{...contents...}) (?{...}\[tag]\[X<>]) (?{{...}})
* NEW: Callouts of name (*name) (*name\[tag]{args...})
* NEW: Builtin callouts (*FAIL) (*MISMATCH) (*ERROR{n}) (*COUNT) (*MAX{n}) etc..
* Examples of Callouts program: [callout.c](sample/callout.c), [count.c](sample/count.c), [echo.c](sample/echo.c)


License
-------

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.6)
AC_INIT(onig, 6.9.7)

AC_CONFIG_MACRO_DIR([m4])

Expand Down Expand Up @@ -57,7 +57,7 @@ fi
dnl Checks for programs.
AC_PROG_CC
LT_INIT
LTVERSION="6:0:1"
LTVERSION="7:0:2"
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 6
#define ONIGURUMA_VERSION_TEENY 7

#define ONIGURUMA_VERSION_INT 60906
#define ONIGURUMA_VERSION_INT 60907

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

0 comments on commit 3bbb3d6

Please sign in to comment.