From b19f2a161a0bfaef4ab9799648cd815397f5a19c Mon Sep 17 00:00:00 2001 From: Rahix Date: Tue, 10 May 2022 20:39:41 +0200 Subject: [PATCH] Prepare 0.3.3 --- CHANGELOG.md | 6 +++++- Cargo.toml | 5 +++-- README.md | 2 +- macros/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cab98bfa25a2c27448a5cc5ecc3ef6836e7e0d86..bca927998006cceaadc96e163f65917ac0543a78 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.3] - 2022-05-10 ### Added - Support for `ATtiny1614` ([#90]). - Support for `ATmega128RFA1` ([#93]). @@ -153,7 +156,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.2...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.3.3...HEAD +[0.3.3]: https://github.com/Rahix/avr-device/compare/v0.3.2...v0.3.3 [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 diff --git a/Cargo.toml b/Cargo.toml index b2778234fb0a1b3c5ac5ea21e52893e2a2176509..17facaa17559bfd089a51fa729e3e22241aaa3ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.3.2" +version = "0.3.3" authors = ["Rahix "] edition = "2018" @@ -15,6 +15,7 @@ include = [ "/src/**/*.rs", "/LICENSE-*", "/README.md", + "/build.rs", ] [package.metadata.docs.rs] @@ -57,7 +58,7 @@ cfg-if = "0.1.10" [dependencies.avr-device-macros] path = "macros/" -version = "=0.3.2" +version = "=0.3.3" optional = true [build-dependencies] diff --git a/README.md b/README.md index 80ddc92ad22da1e1cfc41500cea3091b04cfd729..578f338001946568580faa694defc553f2cbb59c 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.2" +version = "0.3.3" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index da27f08530ad5a516b1446f1c72d47293ab2998c..9d0b925c93ae5f038e7869f5ffb5ceb87d9918aa 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.3.2" +version = "0.3.3" authors = ["Rahix "] edition = "2018"