From fc98f48ac405d2535662808a58bf18a59d513a37 Mon Sep 17 00:00:00 2001 From: Rahix Date: Mon, 19 Oct 2020 20:52:03 +0200 Subject: [PATCH] Prepare 0.2.3 Signed-off-by: Rahix --- CHANGELOG.md | 6 +++++- Cargo.toml | 4 ++-- README.md | 2 +- macros/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46af49958da758f20295e111221e250a2ec674f0..1abd50d14f9305b5cc3c76fe0450b590768743b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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.2.3] - 2020-10-19 ### Added - Support for `ATmega644` - Support for `ATmega328PB` @@ -72,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release with support for `ATmega1280`, `ATmega328P`, `ATmega32U4`, `ATmega64`, `ATmega8`, `ATtiny85`. -[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.2.2...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.2.3...HEAD +[0.2.3]: https://github.com/Rahix/avr-device/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/Rahix/avr-device/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/Rahix/avr-device/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/Rahix/avr-device/compare/v0.1.1...v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 2a0adbfda618a69aece64d3a20a87e36f4e3e039..e787ba8c00560064b4fabd36730b19f038736f0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.2.2" +version = "0.2.3" authors = ["Rahix "] edition = "2018" @@ -43,5 +43,5 @@ cfg-if = "0.1.10" [dependencies.avr-device-macros] path = "macros/" -version = "=0.2.2" +version = "=0.2.3" optional = true diff --git a/README.md b/README.md index a71f9909b8a85e2fc8ac199c231774717000c4f2..ff3b22716b1c1d7587cebbf05184b9981fdf313a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Auto-generated wrappers around registers for AVR microcontrollers. Add the following to `Cargo.toml`: ```toml [dependencies.avr-device] -version = "0.2.2" +version = "0.2.3" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index c95bb4504fdf0c7c5f7092f0c0107fea3f2137e3..b94e02abace887d7e6a85c1dd878998e72b4f179 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.2.2" +version = "0.2.3" authors = ["Rahix "] edition = "2018"