Skip to content

Commit cfbf022

Browse files
committed
Set version to 4.2.1 and update changelog
1 parent 9e99782 commit cfbf022

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ message(STATUS "Generate makefile/project file for DART")
88

99
set(DART_MAJOR_VERSION "4")
1010
set(DART_MINOR_VERSION "2")
11-
set(DART_PATCH_VERSION "0")
11+
set(DART_PATCH_VERSION "1")
1212
set(PKG_DESC "Dynamic Animation and Robotics Toolkit.")
1313
set(DART_VERSION "${DART_MAJOR_VERSION}.${DART_MINOR_VERSION}.${DART_PATCH_VERSION}")
1414
set(PKG_EXTERNAL_DEPS "flann, ccd, fcl")

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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

310
1. Added reset functions for Simulation and Recording class

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
dart (4.2.0) unstable; urgency=low
29

310
* Added reset functions for Simulation and Recording class

tools/abi_check.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)