File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ message(STATUS "Generate makefile/project file for DART")
88
99set (DART_MAJOR_VERSION "4" )
1010set (DART_MINOR_VERSION "2" )
11- set (DART_PATCH_VERSION "0 " )
11+ set (DART_PATCH_VERSION "1 " )
1212set (PKG_DESC "Dynamic Animation and Robotics Toolkit." )
1313set (DART_VERSION "${DART_MAJOR_VERSION} .${DART_MINOR_VERSION} .${DART_PATCH_VERSION} " )
1414set (PKG_EXTERNAL_DEPS "flann, ccd, fcl" )
Original file line number Diff line number Diff line change 1+ ### Version 4.2.1 (2015-01-07)
2+
3+ 1 . Fixed version numbering of shared libraries in debian packages
4+ * [ Pull request #286 ] ( https://github.com/dartsim/dart/pull/286 )
5+ 1 . Fixed Jacobian and its derivatives of FreeJoint/BallJoint
6+ * [ Pull request #284 ] ( https://github.com/dartsim/dart/pull/284 )
7+
18### Version 4.2.0 (2014-11-22)
29
3101 . Added reset functions for Simulation and Recording class
Original file line number Diff line number Diff line change 1+ dart (4.2.1) unstable; urgency=low
2+
3+ * Fixed version numbering of shared libraries in debian packages
4+ * Fixed Jacobian and its derivatives of FreeJoint/BallJoint
5+
6+ -- Jeongseok Lee <
[email protected] > Wed, 7 Jan 2015 02:00:00 -0500
7+
18dart (4.2.0) unstable; urgency=low
29
310 * Added reset functions for Simulation and Recording class
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ print_valid_version_numbers()
2222 echo " 4.0.0"
2323 echo " 4.1.0"
2424 echo " 4.1.1"
25+ echo " 4.2.0"
26+ echo " 4.2.1"
2527 exit 1
2628}
2729
@@ -38,6 +40,12 @@ case "$VERSION_NUMBER" in
3840 4.1.1)
3941 BRANCH_NAME=" tags/v4.1.1"
4042 break ;;
43+ 4.2.0)
44+ BRANCH_NAME=" tags/v4.2.0"
45+ break ;;
46+ 4.2.1)
47+ BRANCH_NAME=" tags/v4.2.1"
48+ break ;;
4149 * )
4250 echo " Invalid version number: ${VERSION_NUMBER} "
4351 print_valid_version_numbers
You can’t perform that action at this time.
0 commit comments