Skip to content

Commit f51ea11

Browse files
authored
Bump package versions to 0.3 (#274)
1 parent cad6964 commit f51ea11

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

examples/message_demo/Cargo.toml

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

@@ -12,13 +12,13 @@ path = "src/message_demo.rs"
1212
anyhow = {version = "1", features = ["backtrace"]}
1313

1414
[dependencies.rclrs]
15-
version = "*"
15+
version = "0.3"
1616

1717
[dependencies.rosidl_runtime_rs]
18-
version = "*"
18+
version = "0.3"
1919

2020
[dependencies.rclrs_example_msgs]
21-
version = "*"
21+
version = "0.3"
2222
features = ["serde"]
2323

2424
[dependencies.serde_json]

examples/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.2.0</version>
7+
<version>0.3.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>

examples/minimal_client_service/Cargo.toml

Lines changed: 3 additions & 3 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.2.0"
3+
version = "0.3.0"
44
authors = ["Esteve Fernandez <[email protected]>"]
55
edition = "2021"
66

@@ -21,10 +21,10 @@ anyhow = {version = "1", features = ["backtrace"]}
2121
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "time"] }
2222

2323
[dependencies.rclrs]
24-
version = "*"
24+
version = "0.3"
2525

2626
[dependencies.rosidl_runtime_rs]
27-
version = "*"
27+
version = "0.3"
2828

2929
[dependencies.example_interfaces]
3030
version = "*"

examples/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.2.0</version>
7+
<version>0.3.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>

examples/minimal_pub_sub/Cargo.toml

Lines changed: 3 additions & 3 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.2.0"
3+
version = "0.3.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"
@@ -25,10 +25,10 @@ path = "src/zero_copy_publisher.rs"
2525
anyhow = {version = "1", features = ["backtrace"]}
2626

2727
[dependencies.rclrs]
28-
version = "*"
28+
version = "0.3"
2929

3030
[dependencies.rosidl_runtime_rs]
31-
version = "*"
31+
version = "0.3"
3232

3333
[dependencies.std_msgs]
3434
version = "*"

examples/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.2.0</version>
7+
<version>0.3.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/CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog for package rclrs
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5-
0.3
5+
0.3 (2022-07-22)
66
----------------
77
* Loaned messages (zero-copy) (`#212 <https://github.com/ros2-rust/ros2_rust/pull/212>`_)
88
* Graph queries (`#234 <https://github.com/ros2-rust/ros2_rust/pull/234>`_)

rclrs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rclrs"
3-
version = "0.2.0"
3+
version = "0.3.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"
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717
# Needed for FFI
1818
libc = "0.2.43"
1919
# Needed for the Message trait, among others
20-
rosidl_runtime_rs = "0.2.0"
20+
rosidl_runtime_rs = "0.3"
2121
# Needed for clients
2222
futures = "0.3"
2323

rclrs/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>rclrs</name>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
<description>Package containing the Rust client library.</description>
99
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
1010
<maintainer email="[email protected]">Nikolai Morin</maintainer>

rclrs_example_msgs/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>rclrs_example_msgs</name>
5-
<version>0.2.0</version>
5+
<version>0.3.0</version>
66
<description>A package containing some example message definitions.</description>
77
<maintainer email="[email protected]">Nikolai Morin</maintainer>
88
<license>Apache License 2.0</license>

rclrs_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rclrs_tests"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Chris Reid <[email protected]>"]
55
edition = "2021"
66

rclrs_tests/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>rclrs_tests</name>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
<description>Package containing tests for rclrs that make use of msgs and other dependencies</description>
99
<maintainer email="[email protected]">Chris Reid</maintainer>
1010
<license>Apache License 2.0</license>

rosidl_generator_rs/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>rosidl_generator_rs</name>
5-
<version>0.2.0</version>
5+
<version>0.3.0</version>
66
<description>Generate the ROS interfaces in Rust.</description>
77
<maintainer email="[email protected]">Esteve Fernandez</maintainer>
88
<license>Apache License 2.0</license>

rosidl_generator_rs/resource/Cargo.toml.em

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
libc = "0.2"
8-
rosidl_runtime_rs = "*"
8+
rosidl_runtime_rs = "0.3"
99
serde = { version = "1", optional = true, features = ["derive"] }
1010
@[for dep in dependency_packages]@
1111
@(dep) = "*"

rosidl_runtime_rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rosidl_runtime_rs"
3-
version = "0.2.0"
3+
version = "0.3.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"

rosidl_runtime_rs/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>rosidl_runtime_rs</name>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
<description>Message generation code shared by Rust projects in ROS 2</description>
99
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address -->
1010
<maintainer email="[email protected]">Jacob Hassold</maintainer>

0 commit comments

Comments
 (0)