Skip to content

Commit

Permalink
Prepare release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdabrandao committed May 5, 2016
1 parent 6fea97d commit 1b179f9
Show file tree
Hide file tree
Showing 4 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.69 for VPSolver 3.1.0b0.
# Generated by GNU Autoconf 2.69 for VPSolver 3.1.0.
#
# Report bugs to <fdabrandao@dcc.fc.up.pt>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='VPSolver'
PACKAGE_TARNAME='vpsolver'
PACKAGE_VERSION='3.1.0b0'
PACKAGE_STRING='VPSolver 3.1.0b0'
PACKAGE_VERSION='3.1.0'
PACKAGE_STRING='VPSolver 3.1.0'
PACKAGE_BUGREPORT='fdabrandao@dcc.fc.up.pt'
PACKAGE_URL='http://vpsolver.dcc.fc.up.pt/'

Expand Down Expand Up @@ -1232,7 +1232,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 VPSolver 3.1.0b0 to adapt to many kinds of systems.
\`configure' configures VPSolver 3.1.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1298,7 +1298,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of VPSolver 3.1.0b0:";;
short | recursive ) echo "Configuration of VPSolver 3.1.0:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1389,7 +1389,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
VPSolver configure 3.1.0b0
VPSolver configure 3.1.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1444,7 +1444,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 VPSolver $as_me 3.1.0b0, which was
It was created by VPSolver $as_me 3.1.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2317,7 +2317,7 @@ fi
# Define the identity of the package.
PACKAGE='vpsolver'
VERSION='3.1.0b0'
VERSION='3.1.0'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -3671,7 +3671,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 VPSolver $as_me 3.1.0b0, which was
This file was extended by VPSolver $as_me 3.1.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -3738,7 +3738,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="\\
VPSolver config.status 3.1.0b0
VPSolver config.status 3.1.0
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,6 +1,6 @@
# autoreconf -i (to update)
# Initialize autoconf.
AC_INIT([VPSolver], [3.1.0b0], [fdabrandao@dcc.fc.up.pt],
AC_INIT([VPSolver], [3.1.0], [fdabrandao@dcc.fc.up.pt],
[vpsolver], [http://vpsolver.dcc.fc.up.pt/])
# Force autoconf to be at least this version number:
AC_PREREQ([2.68])
Expand Down
2 changes: 1 addition & 1 deletion pyvpsolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""

__version__ = "3.1.0b0"
__version__ = "3.1.0"

from .afgraph import AFGraph
from .vpsolver import VPSolver, VBP, MVP, AFG, MPS, LP
Expand Down
6 changes: 3 additions & 3 deletions src/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define PACKAGE_NAME "VPSolver"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "VPSolver 3.1.0b0"
#define PACKAGE_STRING "VPSolver 3.1.0"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "vpsolver"
Expand All @@ -20,7 +20,7 @@
#define PACKAGE_URL "http://vpsolver.dcc.fc.up.pt/"

/* Define to the version of this package. */
#define PACKAGE_VERSION "3.1.0b0"
#define PACKAGE_VERSION "3.1.0"

/* Version number of package */
#define VERSION "3.1.0b0"
#define VERSION "3.1.0"

0 comments on commit 1b179f9

Please sign in to comment.