Skip to content

Commit

Permalink
General preparation for a v0.20.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
phorward committed Nov 7, 2017
1 parent a8b03fe commit 5d659f8
Show file tree
Hide file tree
Showing 11 changed files with 558 additions and 612 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file is used to document any relevant changes done to libphorward.

## v0.20

Released on: Outstanding
Released on: November 7, 2017

- Started use of a lexical analyzer in the build-in LR parser (very unstable!).
- Changed behavior of command-line tools to be more pynetree compliant.
Expand Down
2 changes: 1 addition & 1 deletion Version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
echo "0.20.0 devel"
echo "0.20.0"

# When changing version number, remove src/version.h to regenerate it!
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.69 for Phorward Toolkit 0.19.
# Generated by GNU Autoconf 2.69 for Phorward Toolkit 0.20.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Phorward Toolkit'
PACKAGE_TARNAME='phorward-toolkit'
PACKAGE_VERSION='0.19'
PACKAGE_STRING='Phorward Toolkit 0.19'
PACKAGE_VERSION='0.20'
PACKAGE_STRING='Phorward Toolkit 0.20'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1315,7 +1315,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 Phorward Toolkit 0.19 to adapt to many kinds of systems.
\`configure' configures Phorward Toolkit 0.20 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1386,7 +1386,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Phorward Toolkit 0.19:";;
short | recursive ) echo "Configuration of Phorward Toolkit 0.20:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1497,7 +1497,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
Phorward Toolkit configure 0.19
Phorward Toolkit configure 0.20
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1916,7 +1916,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 Phorward Toolkit $as_me 0.19, which was
It was created by Phorward Toolkit $as_me 0.20, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2783,7 +2783,7 @@ fi

# Define the identity of the package.
PACKAGE='phorward-toolkit'
VERSION='0.19'
VERSION='0.20'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -13362,7 +13362,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 Phorward Toolkit $as_me 0.19, which was
This file was extended by Phorward Toolkit $as_me 0.20, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -13419,7 +13419,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
Phorward Toolkit config.status 0.19
Phorward Toolkit config.status 0.20
configured by $0, generated by GNU Autoconf 2.69,
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,5 +1,5 @@
AC_PREREQ([2.68])
AC_INIT([Phorward Toolkit], [0.19])
AC_INIT([Phorward Toolkit], [0.20])
AC_PREFIX_DEFAULT([/usr])

AC_CONFIG_SRCDIR([src/phorward.tpl.h])
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SRC = array.t2t \
all: $(HTMLOUT)

$(HTMLOUT): $(SRC) Makefile
txt2tags -o $@ -t xhtml --toc --css-suggar --style=phorward.css $(MAINSRC)
txt2tags -o $@ -t xhtml --toc --css-sugar --style=phorward.css $(MAINSRC)

$(TXTOUT): $(SRC) Makefile
txt2tags -t txt -H -o - $? | sed -E -n '1h;1!H;$${;g;s/ +([-A-Z ]+)\n +(=+)/\1\n\2/g;p;}' | sed 's/^ / /g' >$@
Expand Down
Loading

0 comments on commit 5d659f8

Please sign in to comment.