Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carter committed May 13, 2024
1 parent 1753de6 commit 8a614ee
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,15 @@ Note: need to publish with `cargo publish --all-features`
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## Current - Unreleased
### Added

### Fixed

### Changed

## 0.9.0 - May 13th, 2023

### Added

Expand Down
6 changes: 3 additions & 3 deletions roslibrust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roslibrust"
version = "0.8.0"
version = "0.9.0"
authors = ["carter <[email protected]>", "ssnover <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -35,8 +35,8 @@ tokio = { version = "1.20", features = [
] }
tokio-tungstenite = { version = "0.17" }
uuid = { version = "1.1", features = ["v4"] }
roslibrust_codegen_macro = { path = "../roslibrust_codegen_macro", version = "0.8.0" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.8.0" }
roslibrust_codegen_macro = { path = "../roslibrust_codegen_macro", version = "0.9.0" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.9.0" }
reqwest = { version = "0.11", optional = true } # Only used with native ros1
serde_xmlrpc = { version = "0.2", optional = true } # Only used with native ros1
serde_rosmsg = { version = "0.2", optional = true } # Only used with native ros1
Expand Down
4 changes: 2 additions & 2 deletions roslibrust_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roslibrust_codegen"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
authors = ["carter <[email protected]>", "ssnover <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -41,4 +41,4 @@ ros1_test = []
ros2_test = []
# TODO do this!
# # Enables support for chrono time conversions
# chrono = []
# chrono = []
6 changes: 3 additions & 3 deletions roslibrust_codegen_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "roslibrust_codegen_macro"
edition = "2021"
description = "Provides macro-based message generation for roslibrust"
version = "0.8.0"
version = "0.9.0"
repository = "https://github.com/Carter12s/roslibrust"
license = "MIT"
readme = "README.md"
Expand All @@ -16,5 +16,5 @@ proc-macro2 = "1.0"
quote = "1.0"
# Note: finds path version when building locally, and crates.io version when publishing
# https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.8.0" }
syn = "1.0"
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.9.0" }
syn = "1.0"
12 changes: 9 additions & 3 deletions roslibrust_genmsg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
[package]
name = "roslibrust_genmsg"
version = "0.1.0"
version = "0.9.0"
edition = "2021"
license = "MIT"
readme = "../README.md"
description = "A tool for generating source code from ROS message definitions"
repository = "https://github.com/Carter12s/roslibrust"
keywords = ["ROS", "robotics", "codegen", "genmsg"]
categories = ["science::robotics"]

[lib]
name = "roslibrust_genmsg"
Expand All @@ -18,9 +24,9 @@ itertools = "0.12"
lazy_static = "1.4"
log = "0.4"
minijinja = "2.0"
roslibrust_codegen = { path = "../roslibrust_codegen" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.9.0" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dev-dependencies]
const_format = "0.2"
const_format = "0.2"

0 comments on commit 8a614ee

Please sign in to comment.