Skip to content

Commit 1bc59ad

Browse files
committed
Bump up version to 4.3.3 and update changelog
1 parent cc0e940 commit 1bc59ad

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ project(dart)
2424

2525
set(DART_MAJOR_VERSION "4")
2626
set(DART_MINOR_VERSION "3")
27-
set(DART_PATCH_VERSION "2")
27+
set(DART_PATCH_VERSION "3")
2828
set(DART_VERSION "${DART_MAJOR_VERSION}.${DART_MINOR_VERSION}.${DART_PATCH_VERSION}")
2929
set(DART_PKG_DESC "Dynamic Animation and Robotics Toolkit.")
3030
set(DART_PKG_EXTERNAL_DEPS "flann, ccd, fcl")

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### Version 4.3.3 (2015-01-23)
2+
3+
1. Fixed joint Coulomb friction
4+
* [Pull request #311](https://github.com/dartsim/dart/pull/311)
5+
16
### Version 4.3.2 (2015-01-22)
27

38
1. Fixed installation -- missing headers (utils/urdf, utils/sdf)

debian/changelog

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
dart (4.3.3) unstable; urgency=low
2+
3+
* Fixed joint Coulomb friction
4+
5+
-- Jeongseok Lee <[email protected]> Fri, 23 Jan 2015 19:00:00 -0500
6+
17
dart (4.3.2) unstable; urgency=low
28

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

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

713
dart (4.3.1) unstable; urgency=low
814

915
* Fixed API incompatibility introduced by dart-4.3.0
1016

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

1319
dart (4.3.0) unstable; urgency=low
1420

tools/abi_check.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ print_valid_version_numbers()
2727
echo " 4.3.0"
2828
echo " 4.3.1"
2929
echo " 4.3.2"
30+
echo " 4.3.3"
3031
exit 1
3132
}
3233

@@ -56,8 +57,11 @@ case "$VERSION_NUMBER" in
5657
BRANCH_NAME="tags/v4.3.1"
5758
break;;
5859
4.3.2)
59-
BRANCH_NAME="tags/v4.3.2"
60-
break;;
60+
BRANCH_NAME="tags/v4.3.2"
61+
break;;
62+
4.3.3)
63+
BRANCH_NAME="tags/v4.3.3"
64+
break;;
6165
*)
6266
echo "Invalid version number: ${VERSION_NUMBER}"
6367
print_valid_version_numbers

0 commit comments

Comments
 (0)