Skip to content

Commit 6e51c87

Browse files
authored
chore: bump rclrs dependency version to 0.5.0. Bump examples versions to 0.5.0 (#8)
Signed-off-by: Esteve Fernandez <[email protected]>
1 parent c3d190d commit 6e51c87

File tree

14 files changed

+20
-20
lines changed

14 files changed

+20
-20
lines changed

rclrs/logging_demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "examples_logging_demo"
3-
version = "0.1.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
[dependencies]
7-
rclrs = "0.4"
7+
rclrs = "0.5"
88
example_interfaces = "*"

rclrs/logging_demo/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
88
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
99
<maintainer email="[email protected]">Jacob Hassold</maintainer>
10-
<version>0.4.1</version>
10+
<version>0.5.0</version>
1111
<description>Package containing an example of how to use a worker in rclrs.</description>
1212
<license>Apache License 2.0</license>
1313

rclrs/message_demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples_rclrs_message_demo"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Nikolai Morin <[email protected]>"]
55
edition = "2021"
66

@@ -10,7 +10,7 @@ path = "src/message_demo.rs"
1010

1111
[dependencies]
1212
anyhow = {version = "1", features = ["backtrace"]}
13-
rclrs = "0.4"
13+
rclrs = "0.5"
1414
rosidl_runtime_rs = "0.4"
1515
rclrs_example_msgs = { version = "0.4", features = ["serde"] }
1616
serde_json = "1.0"

rclrs/message_demo/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="3">
66
<name>examples_rclrs_message_demo</name>
7-
<version>0.4.1</version>
7+
<version>0.5.0</version>
88
<description>Package containing an example of message-related functionality in rclrs.</description>
99
<maintainer email="[email protected]">Nikolai Morin</maintainer>
1010
<license>Apache License 2.0</license>

rclrs/minimal_client_service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples_rclrs_minimal_client_service"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Esteve Fernandez <[email protected]>"]
55
edition = "2021"
66

@@ -19,7 +19,7 @@ path = "src/minimal_service.rs"
1919
[dependencies]
2020
anyhow = {version = "1", features = ["backtrace"]}
2121
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "time"] }
22-
rclrs = "0.4"
22+
rclrs = "0.5"
2323
rosidl_runtime_rs = "0.4"
2424
example_interfaces = "*"
2525

rclrs/minimal_client_service/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="3">
66
<name>examples_rclrs_minimal_client_service</name>
7-
<version>0.4.1</version>
7+
<version>0.5.0</version>
88
<description>Package containing an example of the client-service mechanism in rclrs.</description>
99
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
1010
<license>Apache License 2.0</license>

rclrs/minimal_pub_sub/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples_rclrs_minimal_pub_sub"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
# This project is not military-sponsored, Jacob's employment contract just requires him to use this email address
55
authors = ["Esteve Fernandez <[email protected]>", "Nikolai Morin <[email protected]>", "Jacob Hassold <[email protected]>"]
66
edition = "2021"
@@ -27,7 +27,7 @@ path = "src/zero_copy_publisher.rs"
2727

2828
[dependencies]
2929
anyhow = {version = "1", features = ["backtrace"]}
30-
rclrs = "0.4"
30+
rclrs = "0.5"
3131
rosidl_runtime_rs = "0.4"
3232
example_interfaces = "*"
3333

rclrs/minimal_pub_sub/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="3">
66
<name>examples_rclrs_minimal_pub_sub</name>
7-
<version>0.4.1</version>
7+
<version>0.5.0</version>
88
<description>Package containing an example of the publish-subscribe mechanism in rclrs.</description>
99
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
1010
<maintainer email="[email protected]">Nikolai Morin</maintainer>

rclrs/parameter_demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "examples_parameter_demo"
3-
version = "0.1.0"
3+
version = "0.5.0"
44
edition = "2021"
55

66
[dependencies]
7-
rclrs = "0.4"
7+
rclrs = "0.5"
88
example_interfaces = "*"

rclrs/parameter_demo/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
88
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
99
<maintainer email="[email protected]">Jacob Hassold</maintainer>
10-
<version>0.4.1</version>
10+
<version>0.5.0</version>
1111
<description>Package containing an example of how to use a worker in rclrs.</description>
1212
<license>Apache License 2.0</license>
1313

0 commit comments

Comments
 (0)