diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..11f5bd2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# 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.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/BroderickCarlin/regiface/compare/v0.1.0...v0.1.1) - 2024-01-29 + +### Added +- Restructure the crate, add utilty methods +- Refactor and add types for handling byte arrays +- Switch to using PackedStruct for serde operations +- Restructure the repo slightly, and get the traits close to their final forms +- Initial commit of the core types + +### Other +- Merge pull request [#1](https://github.com/BroderickCarlin/regiface/pull/1) from BroderickCarlin/dependabot/github_actions/taskmedia/action-conventional-commits-1.1.11 +- Add README and fix a couple doc issues +- Initial commit diff --git a/Cargo.toml b/Cargo.toml index 9e7ca98..6cadb74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "regiface" description = "A crate to ease development of interfacing with registers on embedded peripherals " -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["Broderick Carlin "] readme = "README.md" @@ -15,4 +15,4 @@ packed_struct = {version = "0", optional = true} thiserror = "1" [features] -packed_struct = ["dep:packed_struct"] \ No newline at end of file +packed_struct = ["dep:packed_struct"]