Skip to content

Commit a867987

Browse files
committed
Prepare 0.8.0
1 parent 1ba2d7a commit a867987

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
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.8.0] - 2025-11-30
811
### Changed
912
- **BREAKING**: Changed the architecture of `avr-device` such that code is now
1013
generated at build time ([#157]). This allows us to scale better and also makes the
@@ -359,7 +362,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
359362
Initial release with support for `ATmega1280`, `ATmega328P`, `ATmega32U4`,
360363
`ATmega64`, `ATmega8`, `ATtiny85`.
361364

362-
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.7.0...HEAD
365+
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.8.0...HEAD
366+
[0.8.0]: https://github.com/Rahix/avr-device/compare/v0.7.0...v0.8.0
363367
[0.7.0]: https://github.com/Rahix/avr-device/compare/v0.6.0...v0.7.0
364368
[0.6.0]: https://github.com/Rahix/avr-device/compare/v0.5.4...v0.6.0
365369
[0.5.4]: https://github.com/Rahix/avr-device/compare/v0.5.3...v0.5.4

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.7.0"
3+
version = "0.8.0"
44

55
authors = ["Rahix <[email protected]>"]
66
edition = "2021"
@@ -114,7 +114,7 @@ critical-section = { version = "1.2.0", optional = true }
114114

115115
[dependencies.avr-device-macros]
116116
path = "macros/"
117-
version = "=0.7.0"
117+
version = "=0.8.0"
118118
optional = true
119119

120120
[build-dependencies]

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.7.0"
9+
version = "0.8.0"
1010
features = ["atmega32u4"]
1111
```
1212

examples/atmega328p/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/atmega328p/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ embedded-hal = "0.2.3"
1818

1919

2020
[dependencies.avr-device]
21-
version = "0.7"
21+
version = "0.8"
2222
path = "../.."
2323
features = ["atmega328p", "rt"]
2424

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.7.0"
3+
version = "0.8.0"
44

55
authors = ["Rahix <[email protected]>"]
66
edition = "2021"

0 commit comments

Comments
 (0)