Skip to content

Commit

Permalink
chore: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 9, 2024
1 parent 99f1c82 commit 50d4fe0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
7 changes: 7 additions & 0 deletions regiface-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/BroderickCarlin/regiface/compare/regiface-macros-v0.1.2...regiface-macros-v0.2.0) - 2024-12-09

### Added

- [**breaking**] Add Command trait to represent invocable commands
- add register attribute macro for simplified register definition

## [0.1.2](https://github.com/BroderickCarlin/regiface/compare/regiface-macros-v0.1.1...regiface-macros-v0.1.2) - 2024-02-12

### Other
Expand Down
2 changes: 1 addition & 1 deletion regiface-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "regiface-macros"
description = "This crate implements the macros for the regiface crate"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
authors = ["Broderick Carlin <[email protected]>"]
repository = "https://github.com/BroderickCarlin/regiface"
Expand Down
12 changes: 12 additions & 0 deletions regiface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/BroderickCarlin/regiface/compare/regiface-v0.1.4...regiface-v0.2.0) - 2024-12-09

### Added

- Add invoke_command function pair
- [**breaking**] Add Command trait to represent invocable commands
- add register attribute macro for simplified register definition

### Other

- add comprehensive documentation for I2C/SPI modules

## [0.1.4](https://github.com/BroderickCarlin/regiface/compare/regiface-v0.1.3...regiface-v0.1.4) - 2024-02-12

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions regiface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "regiface"
description = "A crate to ease development of interfacing with registers on embedded peripherals "
version = "0.1.4"
version = "0.2.0"
edition = "2021"
authors = ["Broderick Carlin <[email protected]>"]
readme = "../README.md"
Expand All @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
embedded-hal = "1"
embedded-hal-async = "1"
packed_struct = {version = "0", optional = true, default-features = false}
regiface-macros = {version = "0.1", path = "../regiface-macros"}
regiface-macros = { version = "0.2", path = "../regiface-macros"}
thiserror = "2"

[features]
Expand Down

0 comments on commit 50d4fe0

Please sign in to comment.