aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--src/oniguruma.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 12091e2..29a1417 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
project(oniguruma
- VERSION 6.9.4
+ VERSION 6.9.5
LANGUAGES C)
set(PACKAGE onig)
diff --git a/README.md b/README.md
index 1881ec1..63d835a 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Supported character encodings:
* doc/SYNTAX.md: contributed by seanofw
-Master branch
+Version 6.9.5
-------------
* POSIX API disabled by default for Unix (* Enabled by: configure --enable-posix-api=yes)
diff --git a/configure.ac b/configure.ac
index c26578d..74c20e3 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.4)
+AC_INIT(onig, 6.9.5)
AC_CONFIG_MACRO_DIR([m4])
diff --git a/src/oniguruma.h b/src/oniguruma.h
index daa3ff1..15f6ef0 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 4
+#define ONIGURUMA_VERSION_TEENY 5
-#define ONIGURUMA_VERSION_INT 60904
+#define ONIGURUMA_VERSION_INT 60905
#ifndef P_
#if defined(__STDC__) || defined(_WIN32)