From 5c3df91043819b5b64aa8377ee010906b3ad7b99 Mon Sep 17 00:00:00 2001 From: Stefan Vigerske Date: Mon, 25 Mar 2024 15:14:51 +0100 Subject: [PATCH] add changelog entry and increase version to 3.14.15 --- ChangeLog.md | 5 +++++ configure | 30 +++++++++++++++--------------- configure.ac | 2 +- src/Common/config_ipopt_default.h | 4 ++-- 4 files changed, 23 insertions(+), 18 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index afba9e17e..92ac0965d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,11 @@ More detailed information about incremental changes can be found in the ## 3.14 +### 3.14.15 (2024-xx-yy) + +- Improved finding dependencies of linear solver libraries loaded at runtime on Windows + [#755, by Yue Yang]. + ### 3.14.14 (2024-01-18) - Fixed build of MA57 interface when `FUNNY_MA57_FINT` is defined (MA57 with long integers). diff --git a/configure b/configure index 24f624ba1..64f93a963 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for Ipopt 3.14.14. +# Generated by GNU Autoconf 2.71 for Ipopt 3.14.15. # # Report bugs to . # @@ -627,8 +627,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Ipopt' PACKAGE_TARNAME='ipopt' -PACKAGE_VERSION='3.14.14' -PACKAGE_STRING='Ipopt 3.14.14' +PACKAGE_VERSION='3.14.15' +PACKAGE_STRING='Ipopt 3.14.15' PACKAGE_BUGREPORT='https://github.com/coin-or/Ipopt/issues/new' PACKAGE_URL='https://github.com/coin-or/Ipopt' @@ -1499,7 +1499,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 Ipopt 3.14.14 to adapt to many kinds of systems. +\`configure' configures Ipopt 3.14.15 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1570,7 +1570,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Ipopt 3.14.14:";; + short | recursive ) echo "Configuration of Ipopt 3.14.15:";; esac cat <<\_ACEOF @@ -1773,7 +1773,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Ipopt configure 3.14.14 +Ipopt configure 3.14.15 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -2658,7 +2658,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 Ipopt $as_me 3.14.14, which was +It was created by Ipopt $as_me 3.14.15, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4279,7 +4279,7 @@ rmdir .tst 2>/dev/null -printf "%s\n" "#define IPOPT_VERSION \"3.14.14\"" >>confdefs.h +printf "%s\n" "#define IPOPT_VERSION \"3.14.15\"" >>confdefs.h printf "%s\n" "#define IPOPT_VERSION_MAJOR 3" >>confdefs.h @@ -4288,7 +4288,7 @@ printf "%s\n" "#define IPOPT_VERSION_MAJOR 3" >>confdefs.h printf "%s\n" "#define IPOPT_VERSION_MINOR 14" >>confdefs.h -printf "%s\n" "#define IPOPT_VERSION_RELEASE 14" >>confdefs.h +printf "%s\n" "#define IPOPT_VERSION_RELEASE 15" >>confdefs.h @@ -4399,7 +4399,7 @@ fi # Define the identity of the package. PACKAGE='ipopt' - VERSION='3.14.14' + VERSION='3.14.15' # Some tools Automake needs. @@ -22297,9 +22297,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu - LT_LDFLAGS="$LT_LDFLAGS -version-number 3:14:14" - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtool version info: -version-number 3:14:14" >&5 -printf "%s\n" "$as_me: libtool version info: -version-number 3:14:14" >&6;} + LT_LDFLAGS="$LT_LDFLAGS -version-number 3:14:15" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtool version info: -version-number 3:14:15" >&5 +printf "%s\n" "$as_me: libtool version info: -version-number 3:14:15" >&6;} LT_LDFLAGS="$LT_LDFLAGS -no-undefined" @@ -27980,7 +27980,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 Ipopt $as_me 3.14.14, which was +This file was extended by Ipopt $as_me 3.14.15, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -28053,7 +28053,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="\\ -Ipopt config.status 3.14.14 +Ipopt config.status 3.14.15 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 58084b7ad..d2417927a 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ # Names and other basic things # ############################################################################# -AC_INIT([Ipopt],[3.14.14],[https://github.com/coin-or/Ipopt/issues/new],[],[https://github.com/coin-or/Ipopt]) +AC_INIT([Ipopt],[3.14.15],[https://github.com/coin-or/Ipopt/issues/new],[],[https://github.com/coin-or/Ipopt]) AC_COPYRIGHT([ Copyright 2004, 2011 International Business Machines and others. diff --git a/src/Common/config_ipopt_default.h b/src/Common/config_ipopt_default.h index b4e7a5585..6e771685d 100644 --- a/src/Common/config_ipopt_default.h +++ b/src/Common/config_ipopt_default.h @@ -5,7 +5,7 @@ /***************************************************************************/ /* Version number of project */ -#define IPOPT_VERSION "3.14.14" +#define IPOPT_VERSION "3.14.15" /* Major Version number of project */ #define IPOPT_VERSION_MAJOR 3 @@ -14,7 +14,7 @@ #define IPOPT_VERSION_MINOR 14 /* Release Version number of project */ -#define IPOPT_VERSION_RELEASE 14 +#define IPOPT_VERSION_RELEASE 15 /* Define to the C type corresponding to Fortran INTEGER * @deprecated Use ipindex instead.