From ab1f1360b83be19a3eb07bc8cd0dee1a03e23c61 Mon Sep 17 00:00:00 2001 From: Rahix Date: Fri, 7 Aug 2020 08:10:13 +0200 Subject: [PATCH] Prepare 0.2.0 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 9b7fe4b8a888363380c3a423e4be79977f8eb7b4..79aa86e78fbba52ff193de8820caba67891384b6 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.0] - 2020-08-07 ### Added - Support for `ATtiny88`. - An `asm` module with wrapper functions for various assembly @@ -30,6 +33,7 @@ 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.1.1...HEAD +[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/Rahix/avr-device/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/Rahix/avr-device/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/Rahix/avr-device/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index b4593623dfcdb00312f1f8c955862da5cb87013a..6af7af298fe09f90e2b11b7bf9a00602830ab261 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device" -version = "0.1.1" +version = "0.2.0" authors = ["Rahix "] edition = "2018" @@ -34,7 +34,7 @@ vcell = "0.1.2" [dependencies.avr-device-macros] path = "macros/" -version = "=0.1.0" +version = "=0.2.0" optional = true [package.metadata.docs.rs] diff --git a/README.md b/README.md index d525aea185b34314bda88596f1bae37fd46ecc6d..0e7ac5be30dfc2df5a6d595d1fd09035f884fda8 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.1.1" +version = "0.2.0" features = ["atmega32u4"] ``` diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 2d7a5c7f1becbf5414d82cadc859720bd865ddff..4954414c7d84067648ee60dfb5aba832f2724aa6 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avr-device-macros" -version = "0.1.0" +version = "0.2.0" authors = ["Rahix "] edition = "2018"