From b0ac212c10ee9085b51df627ab4f8194af91b208 Mon Sep 17 00:00:00 2001 From: Rahix Date: Fri, 15 Oct 2021 00:09:14 +0200 Subject: [PATCH] Prepare 0.3.2 --- 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 68664330961182d4092a0f9239946754a5b564ec..c391fbb12f7a0a8a1bd6c4086d6328e1c3111749 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.3.2] - 2021-10-15 ### Added - Support for `ATtiny202` ([#82]). - Support for `ATtiny167` ([#84]). @@ -137,7 +140,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.3.1...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/Rahix/avr-device/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/Rahix/avr-device/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/Rahix/avr-device/compare/v0.2.3...v0.3.0 [0.2.3]: https://github.com/Rahix/avr-device/compare/v0.2.2...v0.2.3 diff --git a/Cargo.toml b/Cargo.toml index 93cab7fe7c6c5b9ef0492671cecac4bb8ddd28e2..a32592cb283732ed0621ca13d6bf0c816d516a74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.3.1" +version = "0.3.2" authors = ["Rahix "] edition = "2018" @@ -54,5 +54,5 @@ cfg-if = "0.1.10" [dependencies.avr-device-macros] path = "macros/" -version = "=0.3.1" +version = "=0.3.2" optional = true diff --git a/README.md b/README.md index 49368120855eb2123f38f39b6b01fc17d8a4adc8..1ef8e6bfd3e71a590d6bd0ca7e1722fddbba9961 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.3.1" +version = "0.3.2" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 8f08b3f26c066df47c8bebe4a3be4b3eea1311fc..da27f08530ad5a516b1446f1c72d47293ab2998c 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.3.1" +version = "0.3.2" authors = ["Rahix "] edition = "2018"