From 829131b774259ddd7c0572b5793bcc5014c4a75f Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 23 Jun 2022 20:45:08 +0200 Subject: [PATCH] Prepare 0.3.4 --- 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 a7be197ca44b205631d93024fa38325edd5234bb..2a2324e34e31150ca9ad75877911685eaa949ecf 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.4] - 2022-06-23 ### Added - Support for `ATtiny13A` ([#100]). @@ -164,7 +167,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.3...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.3.4...HEAD +[0.3.4]: https://github.com/Rahix/avr-device/compare/v0.3.3...v0.3.4 [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 diff --git a/Cargo.toml b/Cargo.toml index bd9d39d2a4a8aa1ecf5fa20566421d7c47b5971b..b9d0f0df8fc852df913f08940b78de56b763eaed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.3.3" +version = "0.3.4" authors = ["Rahix "] edition = "2018" @@ -64,7 +64,7 @@ cfg-if = "0.1.10" [dependencies.avr-device-macros] path = "macros/" -version = "=0.3.3" +version = "=0.3.4" optional = true [build-dependencies] diff --git a/README.md b/README.md index afeebba9f1dc3013b6fc92b8a825acbb13984b9f..64fc036a7a1e8a9098714a6641e09d27fe0c6db8 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.3" +version = "0.3.4" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 9d0b925c93ae5f038e7869f5ffb5ceb87d9918aa..5e5be180dbc3cb00e752c654dac44dd1417bbef9 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.3.3" +version = "0.3.4" authors = ["Rahix "] edition = "2018"