From 07f32b878717ea14922f47ba4db03048436d20dd Mon Sep 17 00:00:00 2001 From: Rahix Date: Sun, 5 Jan 2025 02:54:02 +0100 Subject: [PATCH] Prepare 0.7.0 --- 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 3887f3c..b580dd1 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.7.0] - 2025-01-05 ### Added - Added support for `ATtiny212`, `ATtiny214`. `ATtiny412`, `ATtiny414`, `ATtiny416` ([#167]). - Added support for `ATmega16U2` and `ATmega32U2` ([#164]). @@ -304,7 +307,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.6.0...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/Rahix/avr-device/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/Rahix/avr-device/compare/v0.5.4...v0.6.0 [0.5.4]: https://github.com/Rahix/avr-device/compare/v0.5.3...v0.5.4 [0.5.3]: https://github.com/Rahix/avr-device/compare/v0.5.2...v0.5.3 diff --git a/Cargo.toml b/Cargo.toml index 3775f23..08b0bc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.6.0" +version = "0.7.0" authors = ["Rahix "] edition = "2021" @@ -92,5 +92,5 @@ critical-section = { version = "1.1.1", optional = true } [dependencies.avr-device-macros] path = "macros/" -version = "=0.6.0" +version = "=0.7.0" optional = true diff --git a/README.md b/README.md index 0ff9106..d427a4a 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.6.0" +version = "0.7.0" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 40b3a57..51c8939 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.6.0" +version = "0.7.0" authors = ["Rahix "] edition = "2021"