Skip to content

Commit d0e0c99

Browse files
committed
Update for 0.9.0.
1 parent e7fd8fb commit d0e0c99

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

NEWS

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Version 0.9.0
2+
3+
- Modified the bound parser to allow the minimum and maximum count
4+
to be omitted, defaulting to zero and infinity, respectively.
5+
6+
- Added API variants for operating on raw byte vectors:
7+
tre_regnexecb, tre_regexecb, tre_regncompb, tre_regaexecb,
8+
tre_regcompb.
9+
10+
- Visual Studio 2008 files replaced with Visual Studio 2022 files.
11+
12+
- Bug fixes.
13+
114
Version 0.8.0
215
- Added tre_ prefix to all functions exported from libtre. This
316
changes the binary interface (ABI). The old source interface

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT([TRE], [0.8.0])
2+
AC_INIT([TRE], [0.9.0])
33
AC_CONFIG_SRCDIR([lib/regcomp.c])
44
AC_CONFIG_AUX_DIR([utils])
55
AC_CANONICAL_TARGET

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import os
1010
import shutil
1111

12-
version = "0.8.0"
12+
version = "0.9.0"
1313
data_files = []
1414
include_dirs = ["../local_includes"]
1515
library_dirs = ["../lib/.libs"]

win32/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,13 @@
145145
/* #undef TRE_USE_SYSTEM_REGEX_H */
146146

147147
/* TRE version string. */
148-
#define TRE_VERSION "0.8.0"
148+
#define TRE_VERSION "0.9.0"
149149

150150
/* TRE version level 1. */
151151
#define TRE_VERSION_1 0
152152

153153
/* TRE version level 2. */
154-
#define TRE_VERSION_2 8
154+
#define TRE_VERSION_2 9
155155

156156
/* TRE version level 3. */
157157
#define TRE_VERSION_3 0

win32/tre-config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
#define TRE_WCHAR 1
3434

3535
/* TRE version string. */
36-
#define TRE_VERSION "0.8.0"
36+
#define TRE_VERSION "0.9.0"
3737

3838
/* TRE version level 1. */
3939
#define TRE_VERSION_1 0
4040

4141
/* TRE version level 2. */
42-
#define TRE_VERSION_2 8
42+
#define TRE_VERSION_2 9
4343

4444
/* TRE version level 3. */
4545
#define TRE_VERSION_3 0

0 commit comments

Comments
 (0)