Skip to content

Commit 067d4e4

Browse files
committed
Prepare 0.5.2
1 parent 641c206 commit 067d4e4

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.5.2] - 2023-08-24
811
### Added
912
- `asm::delay_cycles()` for delaying at least a certain number of cpu cycles ([#127]).
1013
- Support for `ATtiny828` ([#126]).
@@ -227,7 +230,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
227230
Initial release with support for `ATmega1280`, `ATmega328P`, `ATmega32U4`,
228231
`ATmega64`, `ATmega8`, `ATtiny85`.
229232

230-
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.5.1...HEAD
233+
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.5.2...HEAD
234+
[0.5.2]: https://github.com/Rahix/avr-device/compare/v0.5.1...v0.5.2
231235
[0.5.1]: https://github.com/Rahix/avr-device/compare/v0.5.0...v0.5.1
232236
[0.5.0]: https://github.com/Rahix/avr-device/compare/v0.4.0...v0.5.0
233237
[0.4.0]: https://github.com/Rahix/avr-device/compare/v0.3.4...v0.4.0

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.5.1"
3+
version = "0.5.2"
44

55
authors = ["Rahix <[email protected]>"]
66
edition = "2021"
@@ -75,5 +75,5 @@ critical-section = { version = "1.1.1", optional = true }
7575

7676
[dependencies.avr-device-macros]
7777
path = "macros/"
78-
version = "=0.5.1"
78+
version = "=0.5.2"
7979
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.5.1"
9+
version = "0.5.2"
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.5.1"
3+
version = "0.5.2"
44

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

0 commit comments

Comments
 (0)