-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cargo: Prepare for the 0.2.0 release
Signed-off-by: Alistair Francis <[email protected]>
- Loading branch information
1 parent
5448837
commit ef3e1c0
Showing
3 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.2.0] - 2025-01-13 | ||
|
||
### Added | ||
|
||
- Support for PCI Vendor messages | ||
- Support for IANA Vendor messages | ||
- Support for SpdmOverMctp and SecuredMessages message types | ||
- Expose SMBusMCTPRequestResponse struct | ||
- Check in Cargo.lock | ||
|
||
### Changed | ||
|
||
- Vendor formats (like VendorIDFormat) are now in the `libmctp::vendor_packets` crate | ||
- generate_packet_bytes() was renamed to generate_control_packet_bytes() | ||
- Switched to 2021 edition of Rust | ||
- Updated package dependencies |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,16 @@ name = "libmctp" | |
description = "libMCTP is a MCTP (Management Component Transport Protocol) implementation for Rust" | ||
repository = "https://github.com/westerndigitalcorporation/libmctp" | ||
license = "MIT OR Apache-2.0" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Alistair Francis <[email protected]>"] | ||
keywords = ["MCTP", "SMBus"] | ||
categories = ["embedded", "encoding", "no-std", "parser-implementations", "parsing"] | ||
edition = "2021" | ||
readme = "README.md" | ||
exclude = [ | ||
".git*", | ||
] | ||
|
||
[dependencies] | ||
bitfield = "0.14" | ||
smbus-pec = "1.0.1" | ||
smbus-pec = "1.0" |