chiark / gitweb /
version bump
authorstevenj <stevenj@alum.mit.edu>
Thu, 15 Jul 2010 18:10:44 +0000 (14:10 -0400)
committerstevenj <stevenj@alum.mit.edu>
Thu, 15 Jul 2010 18:10:44 +0000 (14:10 -0400)
darcs-hash:20100715181044-c8de0-b713ec9cb19094fbaeea3a0aab2e29694492de6a.gz

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index e8bd3b0abb8f7dc089861d239fdb5932e6f17540..9413f20040a49b8b77225df70e4f011dc519e5d0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,26 @@
+NLopt 2.2
+
+* Added SLSQP algorithm for gradient-based local optimization with
+  nonlinear constraints via sequential quadratic programming, based
+  on the implementation by Dieter Kraft that was adapted for SciPy.
+
+* Modified BOBYQA and COBYLA algorithms to support unequal initial
+  step sizes in different directions; thanks to Tom Fiddaman for pointing
+  out the need for this in the case where different directions have
+  very different scales.
+
+* Added Python module docstring; thanks to Sebastian Walter for the suggestion.
+
+* Added GUILE_INSTALL_DIR variable to allow the user to change the
+  Guile installation directory.
+
+* Throw correct exceptions in Python for the add_*constraint functions;
+  thanks to Dmitrey Kroshko for the bug report.
+
+* Bugfix in C++ interface (and some other language front-ends) when
+  deallocating the nlopt_opt object in cases like MLSL where
+  local_optimizer is used; thanks to Jurgen Werner for the bug report.
+
 NLopt 2.1.2 (8 July 2010)
 
 * The Python mconstraint (vector-valued constraint) functions
index bb674f2df465b706d06e362b2d2e409c9d08b929..7c88f3d48f320e2fd1d3eae14971cfbac1a275ad 100644 (file)
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(nlopt, 2.1.2, stevenj@alum.mit.edu)
+AC_INIT(nlopt, 2.2, stevenj@alum.mit.edu)
 AC_CONFIG_SRCDIR(api/nlopt.h)
-SHARED_VERSION_INFO="4:2:4" # CURRENT:REVISION:AGE
+SHARED_VERSION_INFO="5:0:5" # CURRENT:REVISION:AGE
 
 AM_INIT_AUTOMAKE(1.7)
 AM_CONFIG_HEADER(config.h)