Skip to content

Commit

Permalink
Releasing v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Carter committed Oct 17, 2024
1 parent fede1a1 commit 5796226
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

### Changed

## 0.11.1

### Added

### Fixed

- ROS1 Native Publishers no longer occasionally truncate very large messages when configured with latching

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.11.0"
version = "0.11.1"
authors = ["carter <[email protected]>", "ssnover <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -34,8 +34,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.11.0" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.11.0" }
roslibrust_codegen_macro = { path = "../roslibrust_codegen_macro", version = "0.11.1" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.11.1" }
reqwest = { version = "0.11", optional = true } # Only used with native ros1
serde_xmlrpc = { version = "0.2", optional = true } # Only used with native ros1
roslibrust_serde_rosmsg = { version = "0.3", optional = true } # Only used with native ros1
Expand Down
2 changes: 1 addition & 1 deletion roslibrust_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roslibrust_codegen"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
authors = ["carter <[email protected]>", "ssnover <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 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.11.0"
version = "0.11.1"
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.11.0" }
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.11.1" }
syn = "1.0"

0 comments on commit 5796226

Please sign in to comment.