Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jamwaffles committed Jul 28, 2024
1 parent ce2a1f6 commit 4c89cac
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ An EtherCAT master written in Rust.

## [Unreleased] - ReleaseDate

## [0.5.0] - 2024-07-28

### Changed

- [#216](https://github.com/ethercrab-rs/ethercrab/pull/216) PDU retries now use the same PDU index
Expand Down Expand Up @@ -419,8 +421,9 @@ An EtherCAT master written in Rust.
- Initial release

<!-- next-url -->
[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-v0.5.0...HEAD

[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-v0.4.2...HEAD
[0.5.0]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-v0.4.2...ethercrab-v0.5.0
[0.4.2]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-v0.4.1...ethercrab-v0.4.2
[0.4.1]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-v0.4.0...ethercrab-v0.4.1
[0.4.0]: https://github.com/ethercrab-rs/ethercrab/compare/v0.3.6...ethercrab-v0.4.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ethercrab"
categories = ["science::robotics", "no-std", "network-programming"]
version = "0.4.2"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -35,7 +35,7 @@ log = { version = "0.4.20", optional = true, default-features = false }
sealed = "0.5.0"
serde = { version = "1.0.190", features = ["derive"], optional = true }
smlang = "0.6.0"
ethercrab-wire = { version = "0.1.4", path = "./ethercrab-wire" }
ethercrab-wire = { version = "0.2.0", path = "./ethercrab-wire" }

[target.'cfg(target_os = "windows")'.dependencies]
pnet_datalink = { version = "0.34.0", features = ["std"], optional = true }
Expand Down
5 changes: 4 additions & 1 deletion ethercrab-wire-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Derives for `ethercrab`.

## [Unreleased] - ReleaseDate

## [0.2.0] - 2024-07-28

## [0.1.4] - 2024-03-31

### Fixed
Expand Down Expand Up @@ -37,7 +39,8 @@ Derives for `ethercrab`.
- Initial release

<!-- next-url -->
[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-derive-v0.1.4...HEAD
[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-derive-v0.2.0...HEAD
[0.2.0]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-derive-v0.1.4...ethercrab-wire-derive-v0.2.0

[0.1.4]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-derive-v0.1.3...ethercrab-wire-derive-v0.1.4
[0.1.3]:
Expand Down
2 changes: 1 addition & 1 deletion ethercrab-wire-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethercrab-wire-derive"
version = "0.1.4"
version = "0.2.0"
edition = "2021"
categories = ["science::robotics", "no-std", "network-programming"]
license = "MIT OR Apache-2.0"
Expand Down
5 changes: 4 additions & 1 deletion ethercrab-wire/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Primarily used by `ethercrab`.

## [Unreleased] - ReleaseDate

## [0.2.0] - 2024-07-28

### Changed

- **(breaking)** [#218](https://github.com/ethercrab-rs/ethercrab/pull/218) Removed `expected` and
Expand Down Expand Up @@ -41,8 +43,9 @@ Primarily used by `ethercrab`.
- Initial release

<!-- next-url -->
[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-v0.2.0...HEAD

[unreleased]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-v0.1.4...HEAD
[0.2.0]: https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-v0.1.4...ethercrab-wire-v0.2.0
[0.1.4]:
https://github.com/ethercrab-rs/ethercrab/compare/ethercrab-wire-v0.1.3...ethercrab-wire-v0.1.4
[0.1.3]:
Expand Down
4 changes: 2 additions & 2 deletions ethercrab-wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethercrab-wire"
version = "0.1.4"
version = "0.2.0"
edition = "2021"
categories = ["science::robotics", "no-std", "network-programming"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ rust-version = "1.75"

[dependencies]
defmt = { version = "0.3.5", optional = true }
ethercrab-wire-derive = { version = "0.1.4", path = "../ethercrab-wire-derive" }
ethercrab-wire-derive = { version = "0.2.0", path = "../ethercrab-wire-derive" }
heapless = { version = "0.8.0", default-features = false }

[features]
Expand Down

0 comments on commit 4c89cac

Please sign in to comment.