From d0e0c997336b3210f05b3e1daa7bb5cb9900d274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Fri, 20 Sep 2024 13:25:11 +0200 Subject: [PATCH] Update for 0.9.0. --- NEWS | 13 +++++++++++++ configure.ac | 2 +- python/setup.py | 2 +- win32/config.h | 4 ++-- win32/tre-config.h | 4 ++-- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 2e89c01..205338b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +Version 0.9.0 + + - Modified the bound parser to allow the minimum and maximum count + to be omitted, defaulting to zero and infinity, respectively. + + - Added API variants for operating on raw byte vectors: + tre_regnexecb, tre_regexecb, tre_regncompb, tre_regaexecb, + tre_regcompb. + + - Visual Studio 2008 files replaced with Visual Studio 2022 files. + + - Bug fixes. + Version 0.8.0 - Added tre_ prefix to all functions exported from libtre. This changes the binary interface (ABI). The old source interface diff --git a/configure.ac b/configure.ac index fb48525..4b4d09e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([TRE], [0.8.0]) +AC_INIT([TRE], [0.9.0]) AC_CONFIG_SRCDIR([lib/regcomp.c]) AC_CONFIG_AUX_DIR([utils]) AC_CANONICAL_TARGET diff --git a/python/setup.py b/python/setup.py index 327c97d..866f543 100644 --- a/python/setup.py +++ b/python/setup.py @@ -9,7 +9,7 @@ import os import shutil -version = "0.8.0" +version = "0.9.0" data_files = [] include_dirs = ["../local_includes"] library_dirs = ["../lib/.libs"] diff --git a/win32/config.h b/win32/config.h index b4c1e4d..a6708cd 100644 --- a/win32/config.h +++ b/win32/config.h @@ -145,13 +145,13 @@ /* #undef TRE_USE_SYSTEM_REGEX_H */ /* TRE version string. */ -#define TRE_VERSION "0.8.0" +#define TRE_VERSION "0.9.0" /* TRE version level 1. */ #define TRE_VERSION_1 0 /* TRE version level 2. */ -#define TRE_VERSION_2 8 +#define TRE_VERSION_2 9 /* TRE version level 3. */ #define TRE_VERSION_3 0 diff --git a/win32/tre-config.h b/win32/tre-config.h index 25ed8d5..c16bbbe 100644 --- a/win32/tre-config.h +++ b/win32/tre-config.h @@ -33,13 +33,13 @@ #define TRE_WCHAR 1 /* TRE version string. */ -#define TRE_VERSION "0.8.0" +#define TRE_VERSION "0.9.0" /* TRE version level 1. */ #define TRE_VERSION_1 0 /* TRE version level 2. */ -#define TRE_VERSION_2 8 +#define TRE_VERSION_2 9 /* TRE version level 3. */ #define TRE_VERSION_3 0