Skip to content

Commit

Permalink
Prepare 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahix committed May 10, 2022
1 parent 918f14f commit b19f2a1
Show file tree
Hide file tree
Showing 4 changed files with 10 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.3.3] - 2022-05-10
### Added
- Support for `ATtiny1614` ([#90]).
- Support for `ATmega128RFA1` ([#93]).
Expand Down Expand Up @@ -153,7 +156,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.3.2...HEAD
[Unreleased]: https://github.com/Rahix/avr-device/compare/v0.3.3...HEAD
[0.3.3]: https://github.com/Rahix/avr-device/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/Rahix/avr-device/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/Rahix/avr-device/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/Rahix/avr-device/compare/v0.2.3...v0.3.0
Expand Down
5 changes: 3 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.3.2"
version = "0.3.3"

authors = ["Rahix <[email protected]>"]
edition = "2018"
Expand All @@ -15,6 +15,7 @@ include = [
"/src/**/*.rs",
"/LICENSE-*",
"/README.md",
"/build.rs",
]

[package.metadata.docs.rs]
Expand Down Expand Up @@ -57,7 +58,7 @@ cfg-if = "0.1.10"

[dependencies.avr-device-macros]
path = "macros/"
version = "=0.3.2"
version = "=0.3.3"
optional = true

[build-dependencies]
Expand Down
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.3.2"
version = "0.3.3"
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.3.2"
version = "0.3.3"

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

0 comments on commit b19f2a1

Please sign in to comment.