From 33111e55cc559e1f73b12b47b7ccb36617c374dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:30:55 +0000 Subject: [PATCH] chore: release v0.6.1 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 128fece..19061ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ ## [Unreleased] +## [0.6.1](https://github.com/luminartech/simple_someip/compare/v0.6.0...v0.6.1) - 2026-04-21 + +### Added + +- make std the default feature + +### Fixed + +- gate std-requiring deps behind 'std' feature for true no_std support + +### Other + +- Update docs +- update error handling to use `thiserror` directly and remove conditional compilation +- run `cargo fmt` +- remove Display implementations for Error enums in no_std context +- Update CHANGELOG.md +- release v0.5.4 + ### Changed - **`std` is now the default feature** — the crate enables `std` (with `thiserror` and `tracing`) by default. Users targeting `no_std` environments must set `default-features = false` in their `Cargo.toml`. diff --git a/Cargo.lock b/Cargo.lock index 340ef88..ab136ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "simple-someip" -version = "0.6.0" +version = "0.6.1" dependencies = [ "crc", "embedded-io", diff --git a/Cargo.toml b/Cargo.toml index ad6013c..70a3173 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/discovery_client", "examples/client_server"] [package] name = "simple-someip" -version = "0.6.0" +version = "0.6.1" edition = "2024" license = "MIT OR Apache-2.0" description = "A lightweight SOME/IP serialization and communication library"