Skip to content

Commit 9f826bd

Browse files
author
Benjamin Chrétien
committed
Release 3.1: update NEWS and library versions
1 parent 4ffe992 commit 9f826bd

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

NEWS

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
-*- outline -*-
22

3+
New in 3.1, 2015-06-27
4+
* ColMajor/RowMajor support has been improved (cf. #89). Default is back to
5+
ColMajor since this is Eigen's default mode, but that can be changed with a
6+
CMake variable.
7+
* Allocation checking has been improved (cf. #92).
8+
* Multiplots are now available with the matplotlib plotting backend (cf. #94).
9+
* Added vector_t and bool to the solver parameter types. As a consequence,
10+
std::string parameters should not rely on automatic conversion from const
11+
char* (cf. 7a0bbb74c60dd21a9f467a20fe02df67c2dd689f). Basically:
12+
13+
// This will be converted to bool:
14+
parameters["key"].value = "value";
15+
// While this will be a string:
16+
parameters["key"].value = std::string ("value");
17+
18+
* Renamed scale[s]* to scaling* (cf. 434559c940f0866724c24bc32921ee8adfcb005f).
19+
Previous methods/typedefs are currently kept for backward compatibility, but
20+
marked as deprecated.
21+
* Add new StructuredInput helper (cf. #96).
22+
* Add support for matrix plotting with matplotlib (cf.
23+
5abd27ec5e4fdabe1b9299681eb7271befdf4c17 /
24+
af48e9b95cccbd8bcc13b2ea8ba077cdfce215d4).
25+
326
New in 3.0, 2015-03-24
427
* [MAJOR ABI BREAKING CHANGE] Add Eigen::Ref support: now RobOptim functions
528
accept blocks/segments of Eigen matrices as input.

src/CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PKG_CONFIG_USE_DEPENDENCY(roboptim-core eigen3)
5454
PKG_CONFIG_USE_DEPENDENCY(roboptim-core liblog4cxx)
5555

5656
TARGET_LINK_LIBRARIES(roboptim-core ltdl)
57-
SET_TARGET_PROPERTIES(roboptim-core PROPERTIES SOVERSION 3 VERSION 3.0.0)
57+
SET_TARGET_PROPERTIES(roboptim-core PROPERTIES SOVERSION 3 VERSION 3.1.0)
5858
INSTALL(TARGETS roboptim-core DESTINATION ${CMAKE_INSTALL_LIBDIR})
5959

6060

@@ -67,7 +67,7 @@ SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy PROPERTIES PREFIX "")
6767

6868
IF(NOT APPLE)
6969
SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy
70-
PROPERTIES VERSION 3.0.0 SOVERSION 3)
70+
PROPERTIES VERSION 3.1.0 SOVERSION 3)
7171
ENDIF()
7272
INSTALL(TARGETS roboptim-core-plugin-dummy DESTINATION ${PLUGINDIR})
7373

@@ -80,7 +80,7 @@ SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-laststate PROPERTIES PREFIX "")
8080

8181
IF(NOT APPLE)
8282
SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-laststate
83-
PROPERTIES VERSION 3.0.0 SOVERSION 3)
83+
PROPERTIES VERSION 3.1.0 SOVERSION 3)
8484
ENDIF()
8585
INSTALL(TARGETS roboptim-core-plugin-dummy-laststate DESTINATION ${PLUGINDIR})
8686

@@ -93,7 +93,7 @@ SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-d-sparse-laststate PROPERTIES P
9393

9494
IF(NOT APPLE)
9595
SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-d-sparse-laststate
96-
PROPERTIES VERSION 3.0.0 SOVERSION 3)
96+
PROPERTIES VERSION 3.1.0 SOVERSION 3)
9797
ENDIF()
9898
INSTALL(TARGETS roboptim-core-plugin-dummy-d-sparse-laststate DESTINATION ${PLUGINDIR})
9999

@@ -106,7 +106,7 @@ SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-td PROPERTIES PREFIX "")
106106

107107
IF(NOT APPLE)
108108
SET_TARGET_PROPERTIES(roboptim-core-plugin-dummy-td
109-
PROPERTIES VERSION 3.0.0 SOVERSION 3)
109+
PROPERTIES VERSION 3.1.0 SOVERSION 3)
110110
ENDIF()
111111
INSTALL(TARGETS roboptim-core-plugin-dummy-td DESTINATION ${PLUGINDIR})
112112

0 commit comments

Comments
 (0)