Skip to content

chore: bump rclrs dependency version to 0.5.0. Bump examples versions to 0.5.0 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rclrs/logging_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "examples_logging_demo"
version = "0.1.0"
version = "0.5.0"
edition = "2021"

[dependencies]
rclrs = "0.4"
rclrs = "0.5"
example_interfaces = "*"
2 changes: 1 addition & 1 deletion rclrs/logging_demo/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
<maintainer email="[email protected]">Jacob Hassold</maintainer>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of how to use a worker in rclrs.</description>
<license>Apache License 2.0</license>

Expand Down
4 changes: 2 additions & 2 deletions rclrs/message_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples_rclrs_message_demo"
version = "0.4.1"
version = "0.5.0"
authors = ["Nikolai Morin <[email protected]>"]
edition = "2021"

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

[dependencies]
anyhow = {version = "1", features = ["backtrace"]}
rclrs = "0.4"
rclrs = "0.5"
rosidl_runtime_rs = "0.4"
rclrs_example_msgs = { version = "0.4", features = ["serde"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rclrs/message_demo/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>examples_rclrs_message_demo</name>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of message-related functionality in rclrs.</description>
<maintainer email="[email protected]">Nikolai Morin</maintainer>
<license>Apache License 2.0</license>
Expand Down
4 changes: 2 additions & 2 deletions rclrs/minimal_client_service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples_rclrs_minimal_client_service"
version = "0.4.1"
version = "0.5.0"
authors = ["Esteve Fernandez <[email protected]>"]
edition = "2021"

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

Expand Down
2 changes: 1 addition & 1 deletion rclrs/minimal_client_service/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>examples_rclrs_minimal_client_service</name>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of the client-service mechanism in rclrs.</description>
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
<license>Apache License 2.0</license>
Expand Down
4 changes: 2 additions & 2 deletions rclrs/minimal_pub_sub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples_rclrs_minimal_pub_sub"
version = "0.4.1"
version = "0.5.0"
# This project is not military-sponsored, Jacob's employment contract just requires him to use this email address
authors = ["Esteve Fernandez <[email protected]>", "Nikolai Morin <[email protected]>", "Jacob Hassold <[email protected]>"]
edition = "2021"
Expand All @@ -27,7 +27,7 @@ path = "src/zero_copy_publisher.rs"

[dependencies]
anyhow = {version = "1", features = ["backtrace"]}
rclrs = "0.4"
rclrs = "0.5"
rosidl_runtime_rs = "0.4"
example_interfaces = "*"

Expand Down
2 changes: 1 addition & 1 deletion rclrs/minimal_pub_sub/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>examples_rclrs_minimal_pub_sub</name>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of the publish-subscribe mechanism in rclrs.</description>
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
<maintainer email="[email protected]">Nikolai Morin</maintainer>
Expand Down
4 changes: 2 additions & 2 deletions rclrs/parameter_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "examples_parameter_demo"
version = "0.1.0"
version = "0.5.0"
edition = "2021"

[dependencies]
rclrs = "0.4"
rclrs = "0.5"
example_interfaces = "*"
2 changes: 1 addition & 1 deletion rclrs/parameter_demo/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
<maintainer email="[email protected]">Jacob Hassold</maintainer>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of how to use a worker in rclrs.</description>
<license>Apache License 2.0</license>

Expand Down
2 changes: 1 addition & 1 deletion rclrs/rclrs_example_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>rclrs_example_msgs</name>
<version>0.4.1</version>
<version>0.5.0</version>
<description>A package containing some example message definitions.</description>
<maintainer email="[email protected]">Nikolai Morin</maintainer>
<license>Apache License 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion rclrs/rust_pubsub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_pubsub"
version = "0.1.0"
version = "0.5.0"
edition = "2021"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions rclrs/worker_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "examples_worker_demo"
version = "0.1.0"
version = "0.5.0"
edition = "2021"

[dependencies]
rclrs = "0.4"
rclrs = "0.5"
example_interfaces = "*"
2 changes: 1 addition & 1 deletion rclrs/worker_demo/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
<maintainer email="[email protected]">Jacob Hassold</maintainer>
<version>0.4.1</version>
<version>0.5.0</version>
<description>Package containing an example of how to use a worker in rclrs.</description>
<license>Apache License 2.0</license>

Expand Down