Skip to content

Commit

Permalink
released 5.0.1
Browse files Browse the repository at this point in the history
fix #214
  • Loading branch information
genivia-inc committed Oct 29, 2024
1 parent d6f4397 commit df51d8a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.72 for re-flex 5.0.0.
# Generated by GNU Autoconf 2.72 for re-flex 5.0.1.
#
# Report bugs to <https://github.com/Genivia/RE-flex/issues>.
#
Expand Down Expand Up @@ -605,8 +605,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='re-flex'
PACKAGE_TARNAME='reflex'
PACKAGE_VERSION='5.0.0'
PACKAGE_STRING='re-flex 5.0.0'
PACKAGE_VERSION='5.0.1'
PACKAGE_STRING='re-flex 5.0.1'
PACKAGE_BUGREPORT='https://github.com/Genivia/RE-flex/issues'
PACKAGE_URL=''

Expand Down Expand Up @@ -1332,7 +1332,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
'configure' configures re-flex 5.0.0 to adapt to many kinds of systems.
'configure' configures re-flex 5.0.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1403,7 +1403,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of re-flex 5.0.0:";;
short | recursive ) echo "Configuration of re-flex 5.0.1:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1506,7 +1506,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
re-flex configure 5.0.0
re-flex configure 5.0.1
generated by GNU Autoconf 2.72
Copyright (C) 2023 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1857,7 +1857,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by re-flex $as_me 5.0.0, which was
It was created by re-flex $as_me 5.0.1, which was
generated by GNU Autoconf 2.72. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3365,7 +3365,7 @@ fi

# Define the identity of the package.
PACKAGE='reflex'
VERSION='5.0.0'
VERSION='5.0.1'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -6944,7 +6944,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by re-flex $as_me 5.0.0, which was
This file was extended by re-flex $as_me 5.0.1, which was
generated by GNU Autoconf 2.72. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -7012,7 +7012,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
re-flex config.status 5.0.0
re-flex config.status 5.0.1
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([re-flex],[5.0.0],[https://github.com/Genivia/RE-flex/issues],[reflex])
AC_INIT([re-flex],[5.0.1],[https://github.com/Genivia/RE-flex/issues],[reflex])
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_CONFIG_HEADERS([config.h])
AC_COPYRIGHT([Copyright (C) 2016-2024 Robert van Engelen, Genivia Inc.])
Expand Down
2 changes: 1 addition & 1 deletion doc/man/reflex.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH REFLEX "1" "October 29, 2024" "reflex 5.0.0" "User Commands"
.TH REFLEX "1" "October 29, 2024" "reflex 5.0.1" "User Commands"
.SH NAME
\fBreflex\fR -- regex\-centric, fast and flexible lexical analyzer generator
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion reflex.pc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ includedir=${prefix}/include

Name: RE/flex
Description: high-performance C++ regex library and lexical analyzer generator
Version: 5.0.0
Version: 5.0.1
Requires:
Libs: -L${libdir} -lreflex
Cflags: -I${includedir}
2 changes: 1 addition & 1 deletion reflexmin.pc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ includedir=${prefix}/include

Name: RE/flex
Description: high-performance C++ regex library and lexical analyzer generator
Version: 5.0.0
Version: 5.0.1
Requires:
Libs: -L${libdir} -lreflexmin
Cflags: -I${includedir}
2 changes: 1 addition & 1 deletion src/reflex.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
#endif

// DO NOT ALTER THIS LINE: the makemake.sh script updates the version
#define REFLEX_VERSION "5.0.0"
#define REFLEX_VERSION "5.0.1"

/// RE/flex scanner generator class, a variation of the classic "lex" tool to generate scanners.
/**
Expand Down

0 comments on commit df51d8a

Please sign in to comment.