Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release preperation for xtensa-lx-rt@0.17.1 #2060

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
- 'esp-println/**'
esp-riscv-rt:
- 'esp-riscv-rt/**'
xtensa-lx-rt:
- 'xtensa-lx-rt/**'
esp-storage:
- 'esp-storage/**'
esp-wifi:
Expand Down
4 changes: 2 additions & 2 deletions esp-backtrace/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ unsafe fn __user_exception(cause: arch::ExceptionCause, context: arch::Context)

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion esp-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.0] - 2022-08-05

[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.20.0...HEAD
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.20.1...HEAD
[0.20.1]: https://github.com/esp-rs/esp-hal/compare/v0.20.0...v0.20.1
[0.20.0]: https://github.com/esp-rs/esp-hal/compare/v0.19.0...v0.20.0
[0.19.0]: https://github.com/esp-rs/esp-hal/compare/v0.18.0...v0.19.0
Expand Down
28 changes: 28 additions & 0 deletions xtensa-lx-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

All notable changes to this project will be documented in this file.

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

### Added

### Changed

### Fixed

### Removed

## 0.17.1 - 2024-09-02

### Added

- Better diagnostics when using floats inside an interrupt handler when using the default hard fault handler (#2044)

### Fixed

- Store state of FP coprocessor in stack memory (#2057)

## Initial releases
2 changes: 1 addition & 1 deletion xtensa-lx-rt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtensa-lx-rt"
version = "0.17.0"
version = "0.17.1"
edition = "2021"
rust-version = "1.65"
description = "Minimal startup/runtime for Xtensa LX CPUs"
Expand Down
Loading