Skip to content

Commit 07f32b8

Browse files
committed
Prepare 0.7.0
1 parent 783e731 commit 07f32b8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
10+
## [0.7.0] - 2025-01-05
811
### Added
912
- Added support for `ATtiny212`, `ATtiny214`. `ATtiny412`, `ATtiny414`, `ATtiny416` ([#167]).
1013
- 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
304307
Initial release with support for `ATmega1280`, `ATmega328P`, `ATmega32U4`,
305308
`ATmega64`, `ATmega8`, `ATtiny85`.
306309

307-
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.6.0...HEAD
310+
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.7.0...HEAD
311+
[0.7.0]: https://github.com/Rahix/avr-device/compare/v0.6.0...v0.7.0
308312
[0.6.0]: https://github.com/Rahix/avr-device/compare/v0.5.4...v0.6.0
309313
[0.5.4]: https://github.com/Rahix/avr-device/compare/v0.5.3...v0.5.4
310314
[0.5.3]: https://github.com/Rahix/avr-device/compare/v0.5.2...v0.5.3

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "avr-device"
3-
version = "0.6.0"
3+
version = "0.7.0"
44

55
authors = ["Rahix <rahix@rahix.de>"]
66
edition = "2021"
@@ -92,5 +92,5 @@ critical-section = { version = "1.1.1", optional = true }
9292

9393
[dependencies.avr-device-macros]
9494
path = "macros/"
95-
version = "=0.6.0"
95+
version = "=0.7.0"
9696
optional = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Auto-generated wrappers around registers for AVR microcontrollers.
66
Add the following to `Cargo.toml`:
77
```toml
88
[dependencies.avr-device]
9-
version = "0.6.0"
9+
version = "0.7.0"
1010
features = ["atmega32u4"]
1111
```
1212

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "avr-device-macros"
3-
version = "0.6.0"
3+
version = "0.7.0"
44

55
authors = ["Rahix <rahix@rahix.de>"]
66
edition = "2021"

0 commit comments

Comments
 (0)