Skip to content

Commit d843728

Browse files
committed
Prepare 0.5.3
1 parent 133f6fe commit d843728

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.3] - 2023-11-17
811
### Added
912
- Support for `ATmega4808` ([#137]).
1013
- Support for `ATtiny402` ([#140]).
@@ -242,7 +245,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
242245
Initial release with support for `ATmega1280`, `ATmega328P`, `ATmega32U4`,
243246
`ATmega64`, `ATmega8`, `ATtiny85`.
244247

245-
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.5.2...HEAD
248+
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.5.3...HEAD
249+
[0.5.3]: https://github.com/Rahix/avr-device/compare/v0.5.2...v0.5.3
246250
[0.5.2]: https://github.com/Rahix/avr-device/compare/v0.5.1...v0.5.2
247251
[0.5.1]: https://github.com/Rahix/avr-device/compare/v0.5.0...v0.5.1
248252
[0.5.0]: https://github.com/Rahix/avr-device/compare/v0.4.0...v0.5.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.2"
3+
version = "0.5.3"
44

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

7878
[dependencies.avr-device-macros]
7979
path = "macros/"
80-
version = "=0.5.2"
80+
version = "=0.5.3"
8181
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.2"
9+
version = "0.5.3"
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.2"
3+
version = "0.5.3"
44

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

0 commit comments

Comments
 (0)