Skip to content

Commit

Permalink
also release esp-backtrace and esp-metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
MabezDev committed Feb 24, 2025
1 parent 9b5155a commit 2f37f94
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 9 deletions.
10 changes: 8 additions & 2 deletions esp-backtrace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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]
## Unreleased

### Added

Expand All @@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.15.1] - 2025-02-24

### Fixed

- `PanicInfo` is now printed natively by `defmt` (#3112)

## 0.15.0 - 2025-01-15

### Changed
Expand Down Expand Up @@ -66,4 +72,4 @@ No changes - published to avoid conflicts with `esp-println`
- Fix compilation for nightly after 2024-06-12. (#1681)
- Only prints float registers on targets which have them. (#1690)

[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-backtrace?since=2025-01-15
[0.15.1]: https://github.com/esp-rs/esp-hal/releases/tag/esp-backtrace-v0.15.1
2 changes: 1 addition & 1 deletion esp-backtrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-backtrace"
version = "0.15.0"
version = "0.15.1"
edition = "2021"
rust-version = "1.84.0"
description = "Bare-metal backtrace support for Espressif devices"
Expand Down
2 changes: 1 addition & 1 deletion esp-hal-embassy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static_cell = "2.1.0"
[build-dependencies]
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
esp-metadata = { version = "0.6.0", path = "../esp-metadata" }

[features]
default = ["executors"]
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ critical-section = { version = "1.2.0", features = ["restore-state-u32"] }
basic-toml = "0.1.9"
cfg-if = "1.0.0"
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
esp-metadata = { version = "0.6.0", path = "../esp-metadata" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
serde = { version = "1.0.218", features = ["derive"] }

Expand Down
14 changes: 12 additions & 2 deletions esp-metadata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## Unreleased

### Added

Expand All @@ -15,6 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.6.0] - 2025-02-24

### Added

- Introduced the `adc1` and `adc2` symbols (#3082)

### Removed

- Removed the `adc` symbol (#3082)

## 0.5.0 - 2025-01-15

### Added
Expand All @@ -38,4 +48,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-metadata?since=2025-01-15
[0.6.0]: https://github.com/esp-rs/esp-hal/releases/tag/esp-metadata-v0.6.0
2 changes: 1 addition & 1 deletion esp-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-metadata"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.84.0"
description = "Metadata for Espressif devices"
Expand Down
2 changes: 1 addition & 1 deletion esp-wifi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ serde = { version = "1.0.218", default-features = false, features = ["derive"],
[build-dependencies]
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
esp-metadata = { version = "0.6.0", path = "../esp-metadata" }

[features]
default = ["builtin-scheduler", "esp-alloc"]
Expand Down

0 comments on commit 2f37f94

Please sign in to comment.