Skip to content
Merged
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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ repository = "https://github.com/mcbridejc/zencan"

[workspace.dependencies]
# Local
zencan-build = { path = "zencan-build", version = "0.0.1" }
zencan-client = { path = "zencan-client", version = "0.0.1" }
zencan-common = { path = "zencan-common", version = "0.0.1", default-features = false }
zencan-build = { path = "zencan-build", version = "0.0.2" }
zencan-client = { path = "zencan-client", version = "0.0.2" }
zencan-common = { path = "zencan-common", version = "0.0.2", default-features = false }
zencan-macro = { path = "zencan-macro", version = "0.0.1" }
zencan-node = { path = "zencan-node", version = "0.0.1" }
zencan-node = { path = "zencan-node", version = "0.0.2" }

# External
crc16 = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion zencan-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zencan-build"
version = "0.0.1"
version = "0.0.2"
authors = ["Jeff McBride <jeff@jeffmcbride.net>"]
description = "Library for generating code for zencan-node crate"

Expand Down
4 changes: 2 additions & 2 deletions zencan-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

Human-friendly documentation of releases and what's changed in them for the zencan-cli crate.

## [Unreleased]
## v0.0.2 - 2025-12-29

### Fixed

- Panic during scan when socketcan fails to send messages

## [v0.0.1] - 2025-10-09
## v0.0.1 - 2025-10-09

The first release!

Expand Down
2 changes: 1 addition & 1 deletion zencan-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zencan-cli"
version = "0.0.1"
version = "0.0.2"
authors = ["Jeff McBride <jeff@jeffmcbride.net>"]
description = "Command line interface for interacting with CANOpen devices"

Expand Down
4 changes: 2 additions & 2 deletions zencan-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Human-friendly documentation of releases and what's changed in them for the zencan-client crate.

## [Unreleased]
## v0.0.2 - 2025-12-29

### Added

Expand All @@ -25,7 +25,7 @@ Human-friendly documentation of releases and what's changed in them for the zenc
- Fix and retry message sending in SdoClient on failure. With block downloads, it is easy to overrun
transmit buffers and fail, and the desired behavior is to wait and try again.

## [v0.0.1] - 2025-10-09
## v0.0.1 - 2025-10-09

The first release!

Expand Down
2 changes: 1 addition & 1 deletion zencan-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zencan-client"
version = "0.0.1"
version = "0.0.2"
authors = ["Jeff McBride <jeff@jeffmcbride.net>"]
description = "Library for communicating with CANOpen devices on a CAN bus"
keywords = ["embedded", "CAN", "CANOpen"]
Expand Down
2 changes: 1 addition & 1 deletion zencan-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zencan-common"
version = "0.0.1"
version = "0.0.2"
authors = ["Jeff McBride <jeff@jeffmcbride.net>"]
description = "Shared code for zencan-node and zencan-client"

Expand Down
2 changes: 1 addition & 1 deletion zencan-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Human-friendly documentation of releases and what's changed in them for the zencan-node crate.

## Unreleased
## v0.0.2 - 2025-12-29

### Added

Expand Down
2 changes: 1 addition & 1 deletion zencan-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zencan-node"
version = "0.0.1"
version = "0.0.2"
authors = ["Jeff McBride <jeff@jeffmcbride.net>"]
rust-version = "1.81"
description = "Library for implementing an OPENCan node, primarily on an MCU"
Expand Down