Skip to content

Commit

Permalink
Bump up version to 4.3.3 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Jan 23, 2015
1 parent cc0e940 commit 1bc59ad
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ project(dart)

set(DART_MAJOR_VERSION "4")
set(DART_MINOR_VERSION "3")
set(DART_PATCH_VERSION "2")
set(DART_PATCH_VERSION "3")
set(DART_VERSION "${DART_MAJOR_VERSION}.${DART_MINOR_VERSION}.${DART_PATCH_VERSION}")
set(DART_PKG_DESC "Dynamic Animation and Robotics Toolkit.")
set(DART_PKG_EXTERNAL_DEPS "flann, ccd, fcl")
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Version 4.3.3 (2015-01-23)

1. Fixed joint Coulomb friction
* [Pull request #311](https://github.com/dartsim/dart/pull/311)

### Version 4.3.2 (2015-01-22)

1. Fixed installation -- missing headers (utils/urdf, utils/sdf)
Expand Down
10 changes: 8 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
dart (4.3.3) unstable; urgency=low

* Fixed joint Coulomb friction

-- Jeongseok Lee <[email protected]> Fri, 23 Jan 2015 19:00:00 -0500

dart (4.3.2) unstable; urgency=low

* Fixed installation -- missing headers (utils/urdf, utils/sdf)

-- Jeongseok Lee <[email protected]> Mon, 22 Jan 2015 10:00:00 -0500
-- Jeongseok Lee <[email protected]> Thu, 22 Jan 2015 10:00:00 -0500

dart (4.3.1) unstable; urgency=low

* Fixed API incompatibility introduced by dart-4.3.0

-- Jeongseok Lee <[email protected]> Mon, 21 Jan 2015 22:00:00 -0500
-- Jeongseok Lee <[email protected]> Wed, 21 Jan 2015 22:00:00 -0500

dart (4.3.0) unstable; urgency=low

Expand Down
8 changes: 6 additions & 2 deletions tools/abi_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ print_valid_version_numbers()
echo " 4.3.0"
echo " 4.3.1"
echo " 4.3.2"
echo " 4.3.3"
exit 1
}

Expand Down Expand Up @@ -56,8 +57,11 @@ case "$VERSION_NUMBER" in
BRANCH_NAME="tags/v4.3.1"
break;;
4.3.2)
BRANCH_NAME="tags/v4.3.2"
break;;
BRANCH_NAME="tags/v4.3.2"
break;;
4.3.3)
BRANCH_NAME="tags/v4.3.3"
break;;
*)
echo "Invalid version number: ${VERSION_NUMBER}"
print_valid_version_numbers
Expand Down

0 comments on commit 1bc59ad

Please sign in to comment.