Skip to content

Commit

Permalink
Update for 0.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dag-erling committed Sep 19, 2024
1 parent 53218a2 commit 5879d78
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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([TRE], [0.8.0])
AC_INIT([TRE], [0.9.0])
AC_CONFIG_SRCDIR([lib/regcomp.c])
AC_CONFIG_AUX_DIR([utils])
AC_CANONICAL_TARGET
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions win32/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions win32/tre-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5879d78

Please sign in to comment.