~ruther/avr-device

829131b774259ddd7c0572b5793bcc5014c4a75f — Rahix 3 years ago 1a46975
Prepare 0.3.4
4 files changed, 9 insertions(+), 5 deletions(-)

M CHANGELOG.md
M Cargo.toml
M README.md
M macros/Cargo.toml
M CHANGELOG.md => CHANGELOG.md +5 -1
@@ 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

M Cargo.toml => Cargo.toml +2 -2
@@ 1,6 1,6 @@
[package]
name = "avr-device"
version = "0.3.3"
version = "0.3.4"

authors = ["Rahix <rahix@rahix.de>"]
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]

M README.md => README.md +1 -1
@@ 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"]
```


M macros/Cargo.toml => macros/Cargo.toml +1 -1
@@ 1,6 1,6 @@
[package]
name = "avr-device-macros"
version = "0.3.3"
version = "0.3.4"

authors = ["Rahix <rahix@rahix.de>"]
edition = "2018"