diff --git a/Makefile b/Makefile index 84bbaf6..da129bc 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE=cminpack -VERSION=1.3.4 +VERSION=1.3.5 CC=gcc CFLAGS= -O3 -g -Wall -Wextra diff --git a/README.md b/README.md index 306f78c..d2985ed 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,10 @@ The project home page is at http://devernay.free.fr/hacks/cminpack/ History ------ +* version 1.3.5 (28/05/2016): + - Add support for compiling a long double version (Makefile only). + - CMake: static libraries now have the suffix _s. + * version 1.3.4 (28/05/2014): - Add FindCMinpack.cmake cmake module. If you use the cmake install, finding CMinpack from your `CMakeLists.txt` is as easy as diff --git a/doc/index.html b/doc/index.html index d2dbda8..541c48f 100644 --- a/doc/index.html +++ b/doc/index.html @@ -91,7 +91,8 @@
_s
.CMakeLists.txt
(especially on Windows) is as easy as find_package(CMinpack)
.There is now a very powerful alternative to MINPACK, which is the Ceres Solver. You may want to consider using Ceres for any new project.
+There is now a very powerful alternative to MINPACK, which is the Ceres Solver. You may want to consider using Ceres for any new project.
The main feature that's missing on cminpack is the possibility to add constraints on variables. Simple boundary constraints should be enough, as implemented in ALGLIB or MPFIT.