Skip to content

Commit 9c6c5c9

Browse files
committed
Merge branch 'rolling' into cottsay/rmw-test-isolation
2 parents e82bb05 + b9f066f commit 9c6c5c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+441
-45
lines changed

ros2action/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ros2action
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.39.2 (2025-07-01)
6+
-------------------
7+
* Make sure to install py.typed files (`#1058 <https://github.com/ros2/ros2cli/issues/1058>`_)
8+
* Contributors: Christophe Bedard
9+
510
0.39.1 (2025-06-19)
611
-------------------
712
* Relax the check from exact to partial match. (`#1055 <https://github.com/ros2/ros2cli/issues/1055>`_)

ros2action/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ros2action</name>
5-
<version>0.39.1</version>
5+
<version>0.39.2</version>
66
<description>
77
The action command for ROS 2 command line tools.
88
</description>

ros2action/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66
setup(
77
name=package_name,
8-
version='0.39.1',
8+
version='0.39.2',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/' + package_name, ['package.xml']),
1212
('share/ament_index/resource_index/packages',
1313
['resource/' + package_name]),
1414
],
15+
package_data={'': ['py.typed']},
1516
install_requires=['ros2cli'],
1617
zip_safe=True,
1718
author='Jacob Perron',

ros2cli/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ros2cli
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.39.2 (2025-07-01)
6+
-------------------
7+
* Make sure to install py.typed files (`#1058 <https://github.com/ros2/ros2cli/issues/1058>`_)
8+
* Contributors: Christophe Bedard
9+
510
0.39.1 (2025-06-19)
611
-------------------
712
* Export Typing information (`#1041 <https://github.com/ros2/ros2cli/issues/1041>`_)

ros2cli/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ros2cli</name>
5-
<version>0.39.1</version>
5+
<version>0.39.2</version>
66
<description>
77
Framework for ROS 2 command line tools.
88
</description>

ros2cli/ros2cli/node/direct.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
import os
16+
from typing import Optional
1617

1718
import rclpy
1819
import rclpy.action
@@ -24,7 +25,7 @@
2425

2526
class DirectNode:
2627

27-
def __init__(self, args, *, node_name=None):
28+
def __init__(self, args, *, node_name: Optional[str] = None):
2829
timeout_reached = False
2930

3031
def timer_callback():

ros2cli/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='ros2cli',
6-
version='0.39.1',
6+
version='0.39.2',
77
packages=find_packages(exclude=['test']),
88
extras_require={
99
'completion': ['argcomplete'],
@@ -21,6 +21,7 @@
2121
'completion/ros2-argcomplete.zsh'
2222
]),
2323
],
24+
package_data={'': ['py.typed']},
2425
zip_safe=False,
2526
author='Dirk Thomas',
2627
author_email='[email protected]',

ros2cli_test_interfaces/CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Changelog for package ros2cli_test_interfaces
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.39.2 (2025-07-01)
6+
-------------------
7+
58
0.39.1 (2025-06-19)
69
-------------------
710

ros2cli_test_interfaces/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>ros2cli_test_interfaces</name>
5-
<version>0.39.1</version>
5+
<version>0.39.2</version>
66
<description>A package containing interface definitions for testing ros2cli.</description>
77

88
<maintainer email="[email protected]">Audrow Nash</maintainer>

ros2component/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ros2component
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.39.2 (2025-07-01)
6+
-------------------
7+
* Make sure to install py.typed files (`#1058 <https://github.com/ros2/ros2cli/issues/1058>`_)
8+
* Contributors: Christophe Bedard
9+
510
0.39.1 (2025-06-19)
611
-------------------
712
* Export Typing information (`#1041 <https://github.com/ros2/ros2cli/issues/1041>`_)

0 commit comments

Comments
 (0)