aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan McIntyre <ianpmcintyre@gmail.com>2023-02-14 09:48:18 -0500
committerIan McIntyre <ianpmcintyre@gmail.com>2023-02-14 09:48:18 -0500
commit83a3ff31a0c7078fb090f9e767e0a3b050f74542 (patch)
treebd4e0b22ab7c7ca3b3f6dbce616b09f21783c91b
parent4c80cf49e3850ca979a57b62a63d2e9d6acb744b (diff)
Prepare 0.1.1 release
-rw-r--r--CHANGELOG.md13
-rw-r--r--Cargo.toml2
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 06c4a25..1ee0bb2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,10 +2,21 @@
## [Unreleased]
+## [0.1.1] 2023-02-14
+
+Update to cortex-m-rt 0.7.3 to avoid certain miscompilation opportunities.
+For more information, see the [cortex-m-rt advisory][cmrt-0.7.3].
+
+[cmrt-0.7.3]: https://github.com/rust-embedded/cortex-m/discussions/469
+
+Note that imxrt-rt 0.1.0 will no longer build. If you observe this error,
+ensure that your build uses this imxrt-rt release.
+
## [0.1.0] 2022-12-02
First release. `imxrt-rt` provides a build-time API that defines a memory map,
as well as a runtime library that configures i.MX RT 10xx and 11xx processors.
-[Unreleased]: https://github.com/imxrt-rs/imxrt-rt/compare/v0.1.0...HEAD
+[Unreleased]: https://github.com/imxrt-rs/imxrt-rt/compare/v0.1.1...HEAD
+[0.1.1]: https://github.com/imxrt-rs/imxrt-rt/releases/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/imxrt-rs/imxrt-rt/releases/tag/v0.1.0
diff --git a/Cargo.toml b/Cargo.toml
index 9f43be8..75a601b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imxrt-rt"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/imxrt-rs/imxrt-rt"