From 297ac3a905fc55f5ea4129ed82827082f3df8c37 Mon Sep 17 00:00:00 2001 From: Scott Date: Mon, 13 Aug 2018 17:23:50 +0000 Subject: [PATCH] Bump minor version. Add changelog --- CHANGELOG.md | 22 ++++++++++++++++++ Cargo.toml | 2 +- README.md | 2 ++ .../nucleo_l432kc_pinout.png | Bin stm32l432kc.pdf => docs/stm32l432kc.pdf | Bin 5 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md rename nucleo_l432kc_pinout.png => docs/nucleo_l432kc_pinout.png (100%) rename stm32l432kc.pdf => docs/stm32l432kc.pdf (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..dc6e56d1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Change Log + +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] + +## [v0.1.1] - 2018-08-13 + +### Added + - Idle line detection for Usart Rx + - Idle Line Interrupt listening + +### Fixed + - DMA Circular peeking, now correctly resets `consumed_offset` + +## v0.1.0 - 2018-08-05 + +- Initial release + +[Unreleased]: https://github.com/mabezdev/stm32l432xx-hal/compare/v0.1.1...HEAD +[v0.1.1]: https://github.com/mabezdev/stm32l432xx-hal/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index b0a3ac7c..af57226c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stm32l432xx-hal" -version = "0.1.0" +version = "0.1.1" authors = ["Scott Mabin "] description = "Hardware abstraction layer for the stm32l432xx chips" keywords = ["no-std", "stm32l432xx", "stm32l432kc", "embedded", "embedded-hal"] diff --git a/README.md b/README.md index f9437893..667c6013 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ ## [Documentation](todo) +## [Changelog](https://github.com/mabezdev/stm32l432xx-hal/blob/master/CHANGELOG.md) + ## License Licensed under either of diff --git a/nucleo_l432kc_pinout.png b/docs/nucleo_l432kc_pinout.png similarity index 100% rename from nucleo_l432kc_pinout.png rename to docs/nucleo_l432kc_pinout.png diff --git a/stm32l432kc.pdf b/docs/stm32l432kc.pdf similarity index 100% rename from stm32l432kc.pdf rename to docs/stm32l432kc.pdf