Skip to content

Commit

Permalink
Updated version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adeguet1 committed Apr 7, 2021
1 parent a326453 commit 805fa08
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions applications/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2009-2020 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2009-2021 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand Down Expand Up @@ -36,7 +36,7 @@ set (REQUIRED_CISST_LIBRARIES cisstCommon
cisstQt)

# find cisst and make sure the required libraries have been compiled
find_package (cisst 1.0.11 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.1.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND_AS_REQUIRED)

Expand All @@ -50,10 +50,10 @@ if (cisst_FOUND_AS_REQUIRED)
endif ()

# saw components have been compiled within cisst, we should find them automatically
find_package (sawRobotIO1394 1.7.0 REQUIRED)
find_package (sawControllers 1.7.0 REQUIRED)
find_package (sawIntuitiveResearchKit 1.7.1 REQUIRED)
find_package (sawTextToSpeech 1.2.0 REQUIRED)
find_package (sawRobotIO1394 2.0.0 REQUIRED)
find_package (sawControllers 2.0.0 REQUIRED)
find_package (sawIntuitiveResearchKit 2.0.0 REQUIRED)
find_package (sawTextToSpeech 1.3.0 REQUIRED)

if (sawRobotIO1394_FOUND AND sawControllers_FOUND
AND sawIntuitiveResearchKit_FOUND AND sawTextToSpeech_FOUND)
Expand Down
6 changes: 3 additions & 3 deletions applications/gripper-calibration/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2009-2017 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2009-2021 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand All @@ -20,7 +20,7 @@ set (REQUIRED_CISST_LIBRARIES cisstCommon
cisstParameterTypes)

# find cisst and make sure the required libraries have been compiled
find_package (cisst 1.0.11 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.1.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND_AS_REQUIRED)

Expand All @@ -34,7 +34,7 @@ if (cisst_FOUND_AS_REQUIRED)
endif ()

# saw components have been compiled within cisst, we should find them automatically
find_package (sawRobotIO1394 1.7.0 REQUIRED)
find_package (sawRobotIO1394 2.0.0 REQUIRED)

if (sawRobotIO1394_FOUND)

Expand Down
2 changes: 1 addition & 1 deletion applications/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>saw_intuitive_research_kit_applications</name>
<version>1.7.1</version>
<version>2.0.0</version>
<description>
sawIntuitiveResearchKit Application
</description>
Expand Down
16 changes: 8 additions & 8 deletions components/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2011-2019 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2011-2021 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand Down Expand Up @@ -27,7 +27,7 @@ set (REQUIRED_CISST_LIBRARIES
cisstRobot
cisstNumerical)

find_package (cisst 1.0.11 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.1.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND)

Expand All @@ -43,9 +43,9 @@ if (cisst_FOUND)
endif ()

# saw components have been compiled within cisst, we should find them automatically
find_package (sawTextToSpeech 1.2.0 REQUIRED)
find_package (sawRobotIO1394 1.7.0 REQUIRED)
find_package (sawControllers 1.7.0 REQUIRED)
find_package (sawTextToSpeech 1.3.0 REQUIRED)
find_package (sawRobotIO1394 2.0.0 REQUIRED)
find_package (sawControllers 2.0.0 REQUIRED)

if (sawRobotIO1394_FOUND AND sawControllers_FOUND)

Expand Down Expand Up @@ -76,9 +76,9 @@ if (cisst_FOUND)
set (sawIntuitiveResearchKit_LIBRARIES sawIntuitiveResearchKit)

# Set the version number
set (sawIntuitiveResearchKit_VERSION_MAJOR "1")
set (sawIntuitiveResearchKit_VERSION_MINOR "7")
set (sawIntuitiveResearchKit_VERSION_PATCH "1")
set (sawIntuitiveResearchKit_VERSION_MAJOR "2")
set (sawIntuitiveResearchKit_VERSION_MINOR "0")
set (sawIntuitiveResearchKit_VERSION_PATCH "0")
set (sawIntuitiveResearchKit_VERSION "${sawIntuitiveResearchKit_VERSION_MAJOR}.${sawIntuitiveResearchKit_VERSION_MINOR}.${sawIntuitiveResearchKit_VERSION_PATCH}")

# Generate sawIntuitiveResearchKitRevision.h
Expand Down
2 changes: 1 addition & 1 deletion components/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>saw_intuitive_research_kit</name>
<version>1.7.1</version>
<version>2.0.0</version>
<description>
sawIntuitiveResearchKit
</description>
Expand Down
2 changes: 1 addition & 1 deletion examples/derivedTeleOperationPSM/components/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (cisst_FOUND)

# sawIntuitiveResearchKit has been compiled within cisst, we should
# find it automatically
find_package(sawIntuitiveResearchKit 1.7.1 REQUIRED)
find_package(sawIntuitiveResearchKit 2.0.0 REQUIRED)

if (sawIntuitiveResearchKit_FOUND)

Expand Down
2 changes: 1 addition & 1 deletion examples/derivedTeleOperationPSM/components/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>saw_intuitive_research_kit_example_derived_teleop_psm</name>
<version>1.7.1</version>
<version>2.0.0</version>
<description>
sawIntuitiveResearchKit Example
</description>
Expand Down
2 changes: 1 addition & 1 deletion share/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>dvrk_config</name>
<version>1.7.1</version>
<version>2.0.0</version>
<description>dVRK config files</description>

<maintainer email="[email protected]">Anton Deguet</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion tests/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>saw_intuitive_research_kit_tests</name>
<version>1.7.1</version>
<version>2.0.0</version>
<description>
sawIntuitiveResearchKit Tests
</description>
Expand Down

0 comments on commit 805fa08

Please sign in to comment.