Skip to content

Commit 6b4079b

Browse files
authored
release prep [email protected] (#2060)
1 parent 44567f6 commit 6b4079b

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
- 'esp-println/**'
4848
esp-riscv-rt:
4949
- 'esp-riscv-rt/**'
50+
xtensa-lx-rt:
51+
- 'xtensa-lx-rt/**'
5052
esp-storage:
5153
- 'esp-storage/**'
5254
esp-wifi:

esp-backtrace/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ unsafe fn __user_exception(cause: arch::ExceptionCause, context: arch::Context)
100100

101101
// Unfortunately, a different formatter string is used
102102
#[cfg(not(feature = "defmt"))]
103-
esp_println::println!("\n\nException occured '{:?}'", cause);
103+
esp_println::println!("\n\nException occurred '{:?}'", cause);
104104

105105
#[cfg(feature = "defmt")]
106-
defmt::error!("\n\nException occured '{}'", cause);
106+
defmt::error!("\n\nException occurred '{}'", cause);
107107

108108
println!("{:?}", context);
109109

esp-hal/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
704704

705705
## [0.1.0] - 2022-08-05
706706

707-
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.20.0...HEAD
707+
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.20.1...HEAD
708708
[0.20.1]: https://github.com/esp-rs/esp-hal/compare/v0.20.0...v0.20.1
709709
[0.20.0]: https://github.com/esp-rs/esp-hal/compare/v0.19.0...v0.20.0
710710
[0.19.0]: https://github.com/esp-rs/esp-hal/compare/v0.18.0...v0.19.0

xtensa-lx-rt/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
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).
7+
8+
## Unreleased
9+
10+
### Added
11+
12+
### Changed
13+
14+
### Fixed
15+
16+
### Removed
17+
18+
## 0.17.1 - 2024-09-02
19+
20+
### Added
21+
22+
- Better diagnostics when using floats inside an interrupt handler when using the default hard fault handler (#2044)
23+
24+
### Fixed
25+
26+
- Store state of FP coprocessor in stack memory (#2057)
27+
28+
## Initial releases

xtensa-lx-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xtensa-lx-rt"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
edition = "2021"
55
rust-version = "1.65"
66
description = "Minimal startup/runtime for Xtensa LX CPUs"

0 commit comments

Comments
 (0)