Skip to content

Commit 4d9da2b

Browse files
committed
Release 0.8.0
1 parent 6d14433 commit 4d9da2b

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ members = [
77
"r2r_msg_gen",
88
"r2r_macros",
99
"r2r_rcl",
10-
]
10+
]

r2r/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r"
3-
version = "0.7.5"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Easy to use, runtime-agnostic, async rust bindings for ROS2."
66
license = "MIT AND Apache-2.0"
@@ -18,11 +18,11 @@ serde = { version = "1.0.147", features = ["derive"] }
1818
serde_json = "1.0.89"
1919
thiserror = "1.0.37"
2020
lazy_static = "1.4.0"
21-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
22-
r2r_rcl = { path = "../r2r_rcl", version = "0.3.9" }
23-
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.3.13" }
24-
r2r_actions = { path = "../r2r_actions", version = "0.3.12" }
25-
r2r_macros = { path = "../r2r_macros", version = "0.1.0" }
21+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
22+
r2r_rcl = { path = "../r2r_rcl", version = "0.8.0" }
23+
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.8.0" }
24+
r2r_actions = { path = "../r2r_actions", version = "0.8.0" }
25+
r2r_macros = { path = "../r2r_macros", version = "0.8.0" }
2626
uuid = { version = "1.2.2", features = ["serde", "v4"] }
2727
futures = "0.3.25"
2828
log = "0.4.18"
@@ -35,8 +35,8 @@ tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
3535
rand = "0.8.5"
3636

3737
[build-dependencies]
38-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
39-
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.3.13" }
38+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
39+
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.8.0" }
4040
rayon = "1.7.0"
4141
force-send-sync = "1.0.0"
4242
quote = "1.0.28"

r2r_actions/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r_actions"
3-
version = "0.3.12"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Internal dependency to the r2r crate."
66
license = "MIT"
@@ -11,12 +11,12 @@ repository = "https://github.com/sequenceplanner/r2r"
1111
documentation = "https://docs.rs/r2r/latest/r2r"
1212

1313
[dependencies]
14-
r2r_rcl = { path = "../r2r_rcl", version = "0.3.9" }
15-
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.3.13" }
14+
r2r_rcl = { path = "../r2r_rcl", version = "0.8.0" }
15+
r2r_msg_gen = { path = "../r2r_msg_gen", version = "0.8.0" }
1616

1717
[build-dependencies]
1818
bindgen = "0.63.0"
19-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
19+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
2020

2121
[features]
2222
save-bindgen = ["r2r_rcl/save-bindgen", "r2r_msg_gen/save-bindgen"]

r2r_common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r_common"
3-
version = "0.3.8"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Minimal ros2 bindings."
66
license = "MIT"

r2r_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r_macros"
3-
version = "0.1.0"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Minimal ros2 bindings."
66
license = "MIT"

r2r_msg_gen/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r_msg_gen"
3-
version = "0.3.13"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Internal dependency to the r2r crate."
66
license = "MIT"
@@ -11,8 +11,8 @@ repository = "https://github.com/sequenceplanner/r2r"
1111
documentation = "https://docs.rs/r2r/latest/r2r"
1212

1313
[dependencies]
14-
r2r_rcl = { path = "../r2r_rcl", version = "0.3.9" }
15-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
14+
r2r_rcl = { path = "../r2r_rcl", version = "0.8.0" }
15+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
1616
phf = { version = "0.11.1", features = ["macros"] }
1717
quote = "1.0.28"
1818
proc-macro2 = "1.0.60"
@@ -22,8 +22,8 @@ rayon = "1.7.0"
2222

2323
[build-dependencies]
2424
bindgen = "0.63.0"
25-
r2r_rcl = { path = "../r2r_rcl", version = "0.3.9" }
26-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
25+
r2r_rcl = { path = "../r2r_rcl", version = "0.8.0" }
26+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
2727
quote = "1.0.28"
2828
syn = { version = "2.0.18", features = ["full"] }
2929
rayon = "1.7.0"

r2r_rcl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2r_rcl"
3-
version = "0.3.9"
3+
version = "0.8.0"
44
authors = ["Martin Dahl <[email protected]>"]
55
description = "Internal dependency to the r2r crate."
66
license = "MIT"
@@ -16,7 +16,7 @@ widestring = "1.0.2"
1616

1717
[build-dependencies]
1818
bindgen = "0.63.0"
19-
r2r_common = { path = "../r2r_common", version = "0.3.8" }
19+
r2r_common = { path = "../r2r_common", version = "0.8.0" }
2020

2121
[features]
2222
save-bindgen = []

0 commit comments

Comments
 (0)