preparing ROS 1.1.2

This commit is contained in:
Ken Conley 2010-04-15 02:13:49 +00:00
parent 0fcab4f899
commit 8993d05311
3 changed files with 3 additions and 3 deletions

View File

@ -16,4 +16,4 @@ set(ROSPACK_MAKEDIST true)
# variables.
#list(APPEND CPACK_SOURCE_IGNORE_FILES /core/experimental)
rosbuild_make_distribution(1.1.1)
rosbuild_make_distribution(1.1.2)

View File

@ -35,7 +35,7 @@ USAGE = '''USAGE: rosversion <stack>
import sys
if len(sys.argv) == 2 and sys.argv[1] == 'ros':
print '1.1.1'
print '1.1.2'
else:
print >> sys.stderr, USAGE
sys.exit(-1)

View File

@ -41,7 +41,7 @@
#define ROS_VERSION_MAJOR 1
#define ROS_VERSION_MINOR 1
#define ROS_VERSION_PATCH 1
#define ROS_VERSION_PATCH 2
#define ROS_VERSION_COMBINED(major, minor, patch) (((major) << 20) | ((minor) << 10) | (patch))
#define ROS_VERSION ROS_VERSION_COMBINED(ROS_VERSION_MAJOR, ROS_VERSION_MINOR, ROS_VERSION_PATCH)