From: stevenj Date: Thu, 5 Aug 2010 19:49:18 +0000 (-0400) Subject: version bump to 2.2.1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=463a0e1d0d44d17e456e0a60e278cb21aafd1637;p=nlopt.git version bump to 2.2.1 darcs-hash:20100805194918-c8de0-a791532682179b8e12e75ccd7bd35315021e22cb.gz --- diff --git a/NEWS b/NEWS index 30cbcef..9995372 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,23 @@ +NLopt 2.2.1 (5 August 2010) + +* If you compile nlopt.h with the NLOPT_DLL_EXPORT symbol #defined, + it now uses the dllexport directive (under Windows), useful for + compiling an NLopt DLL under Microsoft compilers; thanks to Benoit + Scherrer for the suggestion. + +* Handle case where copysign function is missing, e.g. on Windows; + thanks to Benoit Scherrer for the bug report. + +* Remove C99-style mixed declaration and code in a couple files, so + that code compiles in C89; thanks to Benoit Scherrer for the bug report. + +* Don't use dllimport directive with lcc on Windows (which doesn't + support it); thanks to Laurent Vanbeylen for the bug report. + +* Update Nodedal README directory to indicate that Nocedal's LBFGS code + is now available under the GPL, and therefore may be distributed with + a future NLopt version (although Luksan's LBFGS code already works well). + NLopt 2.2 (15 July 2010) * Added SLSQP algorithm for gradient-based local optimization with diff --git a/configure.ac b/configure.ac index b5c6d2a..270494b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(nlopt, 2.2, stevenj@alum.mit.edu) +AC_INIT(nlopt, 2.2.1, stevenj@alum.mit.edu) AC_CONFIG_SRCDIR(api/nlopt.h) -SHARED_VERSION_INFO="5:0:5" # CURRENT:REVISION:AGE +SHARED_VERSION_INFO="5:1:5" # CURRENT:REVISION:AGE AM_INIT_AUTOMAKE(1.7) AM_CONFIG_HEADER(config.h)