Skip to content

Commit 1dd492c

Browse files
committed
rc-1.3.0
1 parent 7fe12e3 commit 1dd492c

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
1.3.0 (2024-08-09)
5+
==================
6+
7+
* Updated code, `package.xml` and `CMakeLists.txt` so the same repository can be used for both ROS1 and ROS2
8+
49
1.2.0 (2023-11-21)
510
==================
611

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required (VERSION 3.10)
2-
project (crtk_python_client VERSION 1.2.0)
2+
project (crtk_python_client VERSION 1.3.0)
33

44
# first test for ROS1
55
find_package (catkin QUIET

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>crtk_python_client</name>
4-
<version>1.2.0</version>
4+
<version>1.3.0</version>
55
<description>crtk Python client</description>
66
<maintainer email="[email protected]">Anton Deguet</maintainer>
77
<maintainer email="[email protected]">Adnan Munawar</maintainer>

src/crtk/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
elif __ros_version_string == '2':
1616
__all__.append('ros_ral2')
1717
from .ral_ros2 import ral
18+
else:
19+
print('environment variable ROS_VERSION must be either 1 or 2, did you source your setup.bash?')
1820

1921
# handle classes
2022
from .wait_move_handle import wait_move_handle

0 commit comments

Comments
 (0)