File tree 2 files changed +3
-12
lines changed
2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ - :warning : require C++ >= 14
11
+
10
12
## [ 1.2.9] - 2024-08-26
11
13
12
14
- allow use of installed jrl-cmakemodules
@@ -18,25 +20,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
20
19
21
## [ 1.2.7] - 2023-11-15
20
22
21
- Changes since v1.2.6:
22
23
- Respect BUILD_SHARED_LIBS
23
24
- Update CMake
24
25
25
26
## [ 1.2.6] - 2023-03-31
26
27
27
- Changes in v1.2.6:
28
28
- Adding inline keyword on (deprecated) solve_eiquadprog2 implemented in header
29
29
- Ignore Wsign-conversion warnings
30
30
31
31
## [ 1.2.5] - 2022-09-12
32
32
33
- Changes in v1.2.5:
34
33
- fix trace solver
35
34
36
35
37
36
## [ 1.2.4] - 2022-09-05
38
37
39
- Changes in v1.2.4:
40
38
- tests are now optional
41
39
- Remove memory allocations and expose dual variables to the user
42
40
- fix warning about cast of unused parameters
@@ -51,44 +49,36 @@ Maintenance release
51
49
52
50
## [ 1.2.2] - 2020-09-21
53
51
54
- Changes in v1.2.2:
55
52
- Update package.xml for ROS release
56
53
57
54
## [ 1.2.1] - 2020-09-09
58
55
59
- Changes in v1.2.1:
60
56
- add TRACE_SOLVER option
61
57
- fix packaging
62
58
63
59
## [ 1.2.0] - 2020-05-26
64
60
65
- Changes in v1.2.0:
66
61
- add a shared library
67
62
68
63
## [ 1.1.3] - 2020-03-24
69
64
70
- Changes since v1.1.2:
71
65
- CMake: export project and use exports from dependencies
72
66
- CMake: keep minimal required instructions
73
67
74
68
## [ 1.1.2] - 2020-03-11
75
69
76
- Changes since v1.1.1:
77
70
- fix build on 16.04, where Eigen3Config.cmake doesn't provide a version
78
71
79
72
## [ 1.1.1] - 2020-03-11
80
73
81
- Changes since v1.1.0:
82
74
- update README
83
75
84
76
## [ 1.1.0] - 2020-03-11
85
77
86
- Changes since v1.0.0:
87
78
- Added CMake Export
88
79
89
80
## [ 1.0.0] - 2019-10-24
90
81
91
- Changes since v0.0.3:
92
82
- Add eiquadprog-rt
93
83
- Fix license
94
84
- Configure CI
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ include("${JRL_CMAKE_MODULES}/boost.cmake")
73
73
# Project definition
74
74
compute_project_args(PROJECT_ARGS LANGUAGES CXX)
75
75
project (${PROJECT_NAME} ${PROJECT_ARGS} )
76
+ check_minimal_cxx_standard(14 ENFORCE)
76
77
77
78
# Project dependencies
78
79
add_project_dependency(Eigen3 REQUIRED)
You can’t perform that action at this time.
0 commit comments