Skip to content

Commit fbcfeb7

Browse files
authored
Prepare for release 0.1.4 (#32)
1 parent 7a0bfe6 commit fbcfeb7

File tree

3 files changed

+26
-19
lines changed

3 files changed

+26
-19
lines changed

CHANGELOG.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,47 @@
11
# Changelog
22

3-
## Unreleased Changes
3+
All notable changes to this project will be documented in this file.
44

5-
Working on patching the svd for better workflow, using [svdtools](https://pypi.org/project/svdtools/)
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

7-
## Release 0.1.3
8-
[Release 0.1.3 on Crates.io](https://crates.io/crates/rp2040-pac/0.1.3)
8+
## [Unreleased]
99

10-
[Release 0.1.3 on GitHub](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.3)
10+
## [0.1.4] [Crates.io](https://crates.io/crates/rp2040-pac/0.1.4) [Github](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.4)
11+
12+
- Removed broken register (as per errata)
13+
- Fixed lineendings in documentation
14+
- Update svd2rust to 0.19.0
15+
- Made SIE_STATUS CONNECTED read-write
16+
- Fixed update script for OSX
17+
- Changed SIO SPINLOCKs to read-write
18+
19+
## [0.1.3] [Crates.io](https://crates.io/crates/rp2040-pac/0.1.3) [Github](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.3)
1120

1221
- Update source SVD to pico-sdk 1.2.0
1322
- Cluster PWM channels
1423
- Bump cortex-m dep to 0.7.3
1524

16-
## Release 0.1.2
17-
[Release 0.1.2 on Crates.io](https://crates.io/crates/rp2040-pac/0.1.2)
18-
19-
[Release 0.1.2 on GitHub](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.2)
25+
## [0.1.2] [Crates.io](https://crates.io/crates/rp2040-pac/0.1.2) [Github](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.2)
2026

2127
- Switched GPIO for IO_BANK and QSPI_BANK to be arrays instead.
2228
- Change BUFF_STATUS access to read-write
2329
- Re-clustered IO_QSPI. Fixed naming to remove double underscore
2430
- Renamed GPIO_QSPI_[STAT,CTRL] -> GPIO_[STAT,CTRL]
2531
- Convert DMA chunnels to a list of register clusters
2632

27-
## Release 0.1.1
28-
[Release 0.1.1 on Crates.io](https://crates.io/crates/rp2040-pac/0.1.1)
29-
30-
[Release 0.1.1 on GitHub](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.1)
33+
## [0.1.1] [Crates.io](https://crates.io/crates/rp2040-pac/0.1.1) [Github](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.1)
3134

3235
- Created using svd2rust 0.17.0 from https://github.com/raspberrypi/pico-sdk/blob/1.0.0/src/rp2040/hardware_regs/rp2040.svd
3336
- Alphabetized Peripherals
3437

35-
## Release 0.1.0
36-
[Release 0.1.0 on Crates.io](https://crates.io/crates/rp2040-pac/0.1.0)
37-
38-
[Release 0.1.0 on GitHub](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.0)
38+
## [0.1.0] [Crates.io](https://crates.io/crates/rp2040-pac/0.1.0) [Github](https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.0)
3939

4040
- Initialized crate
41+
42+
[Unreleased]: https://github.com/rp-rs/rp2040-pac/compare/v0.1.4...HEAD
43+
[0.1.4]: https://github.com/rp-rs/rp2040-pac/compare/v0.1.3...v0.1.4
44+
[0.1.3]: https://github.com/rp-rs/rp2040-pac/compare/v0.1.2...v0.1.3
45+
[0.1.2]: https://github.com/rp-rs/rp2040-pac/compare/v0.1.1...v0.1.2
46+
[0.1.1]: https://github.com/rp-rs/rp2040-pac/compare/v0.1.0...v0.1.1
47+
[0.1.0]: https://github.com/rp-rs/rp2040-pac/releases/tag/v0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rp2040-pac"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["eolder <evanmolder@gmail.com>", "Jonathan Pallant <github@thejpster.org.uk>"]
55
edition = "2018"
66
homepage = "https://github.com/rp-rs/rp2040-pac"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Cortex-M0+ microcontroller.
66
[Peripheral Access Crate]: https://rust-embedded.github.io/book/start/registers.html
77
[RP2040]: https://datasheets.raspberrypi.org/rp2040/rp2040_datasheet.pdf
88

9-
This crate has been built using [svd2rust] version 0.17 and [svdtools], using
9+
This crate has been built using [svd2rust] version 0.19 and [svdtools], using
1010
the SVD file in the [pico-sdk v1.2.0]. Some manual fixes have been made to the
1111
documentation formatting, and the removal of some unrecognized lints.
1212

0 commit comments

Comments
 (0)