Skip to content

Commit

Permalink
Cargo: Prepare for the 0.2.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Alistair Francis <[email protected]>
  • Loading branch information
alistair23 committed Jan 13, 2025
1 parent 5448837 commit ef3e1c0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
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
4 changes: 2 additions & 2 deletions Cargo.lock

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

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit ef3e1c0

Please sign in to comment.