Skip to content

Commit

Permalink
Prepare 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahix committed Jan 5, 2025
1 parent 783e731 commit 07f32b8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]).
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avr-device"
version = "0.6.0"
version = "0.7.0"

authors = ["Rahix <[email protected]>"]
edition = "2021"
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
```

Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avr-device-macros"
version = "0.6.0"
version = "0.7.0"

authors = ["Rahix <[email protected]>"]
edition = "2021"
Expand Down

0 comments on commit 07f32b8

Please sign in to comment.