Skip to content
Draft
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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down