Skip to content

Commit d655fe6

Browse files
authored
New package releases (#2310)
* Bump version numbers of all packages to be published, update deps as needed * Update all `CHANGELOG.md` files * Update migration guide headings
1 parent ba8daaf commit d655fe6

File tree

24 files changed

+120
-55
lines changed

24 files changed

+120
-55
lines changed

esp-alloc/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14-
- a global allocator is created in esp-alloc, now you need to add individual memory regions (up to 3) to the allocator (#2099)
15-
1614
### Fixed
1715

1816
### Removed
1917

18+
## 0.5.0 - 2024-10-10
19+
20+
### Changed
21+
22+
- a global allocator is created in esp-alloc, now you need to add individual memory regions (up to 3) to the allocator (#2099)
23+
2024
## 0.4.0 - 2024-06-04
2125

2226
## 0.3.0 - 2023-04-25
@@ -27,4 +31,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2731

2832
## 0.1.0 - 2022-07-25
2933

30-
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-aloc?since=2024-06-05
34+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-alloc?since=2024-10-10

esp-alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-alloc"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
rust-version = "1.68"
66
description = "A heap allocator for Espressif devices"

esp-backtrace/CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [Unreleased]
99

1010
### Added
1111

1212
### Changed
1313

1414
### Fixed
1515

16-
- Fix build when not using `panic-handler` (#2257)
17-
1816
### Removed
1917

18+
## 0.14.2 - 2024-10-10
19+
20+
### Fixed
21+
22+
- Fix build when not using `panic-handler` (#2257)
23+
2024
## 0.14.1 - 2024-09-06
2125

2226
### Added
2327

2428
### Changed
29+
2530
- Print a more helpful message in case of a `Cp0Disabled` exception (#2061)
2631

2732
### Fixed
@@ -54,3 +59,5 @@ No changes - published to avoid conflicts with `esp-println`
5459

5560
- Fix compilation for nightly after 2024-06-12. (#1681)
5661
- Only prints float registers on targets which have them. (#1690)
62+
63+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-backtrace?since=2024-10-10

esp-backtrace/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-backtrace"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
edition = "2021"
55
rust-version = "1.76.0"
66
description = "Bare-metal backtrace support for Espressif devices"
@@ -13,7 +13,7 @@ features = ["esp32c3", "panic-handler", "exception-handler", "println", "e
1313

1414
[dependencies]
1515
defmt = { version = "0.3.8", optional = true }
16-
esp-println = { version = "0.11.0", optional = true, default-features = false, path = "../esp-println" }
16+
esp-println = { version = "0.12.0", optional = true, default-features = false, path = "../esp-println" }
1717
semihosting = { version = "0.1.15", optional = true }
1818

1919
[build-dependencies]

esp-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ proc-macro = true
1212

1313
[dependencies]
1414
quote = "1.0.37"
15-
syn = { version = "2.0.71", features = ["fold", "full"] }
15+
syn = { version = "2.0.79", features = ["fold", "full"] }
1616
termcolor = "1.4.1"

esp-config/Cargo.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
[package]
2-
name = "esp-config"
3-
version = "0.1.0"
4-
edition = "2021"
5-
rust-version = "1.79.0"
2+
name = "esp-config"
3+
version = "0.1.0"
4+
edition = "2021"
5+
rust-version = "1.79.0"
6+
repository = "https://github.com/esp-rs/esp-hal"
7+
license = "MIT OR Apache-2.0"
68

79
[dependencies]
8-
document-features = "0.2.10"
10+
document-features = "0.2.10"
911

1012
[dev-dependencies]
1113
temp-env = "0.3.6"
1214

1315
[features]
1416
## Enable the generation and parsing of a config
15-
build = []
17+
build = []

esp-hal-embassy/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [Unreleased]
99

1010
### Added
1111

1212
### Changed
1313

14-
- MSRV bump to 1.79 (#2156)
15-
1614
### Fixed
1715

1816
### Removed
1917

18+
## 0.4.0 - 2024-10-10
19+
20+
### Changed
21+
22+
- MSRV bump to 1.79 (#2156)
23+
24+
### Removed
25+
2026
- Removed the `clocks` parameter from `esp_hal_embassy::init`. (#1999)
2127

2228
## 0.3.0 - 2024-08-29
@@ -42,3 +48,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4248
- Removed the TIMG and SYSTIMER time drivers, replaced by a generic time driver taking `OneShotTimer<ErasedTimer>` (#1753)
4349

4450
## 0.1.0 - 2024-06-04
51+
52+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-embassy?since=2024-10-10

esp-hal-embassy/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-hal-embassy"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.79.0"
66
description = "Embassy support for esp-hal"
@@ -17,15 +17,15 @@ defmt = { version = "0.3.8", optional = true }
1717
document-features = "0.2.10"
1818
embassy-executor = { version = "0.6.0", optional = true }
1919
embassy-time-driver = { version = "0.1.0", features = [ "tick-hz-1_000_000" ] }
20-
esp-hal = { version = "0.20.0", path = "../esp-hal" }
20+
esp-hal = { version = "0.21.0", path = "../esp-hal" }
2121
log = { version = "0.4.22", optional = true }
22-
macros = { version = "0.13.0", features = ["embassy"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
22+
macros = { version = "0.14.0", features = ["embassy"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
2323
portable-atomic = "1.9.0"
2424
static_cell = "2.1.0"
2525

2626
[build-dependencies]
2727
esp-build = { version = "0.1.0", path = "../esp-build" }
28-
esp-metadata = { version = "0.3.0", path = "../esp-metadata" }
28+
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
2929

3030
[features]
3131
default = ["executors"]

esp-hal-embassy/MIGRATING-0.3.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
Migration Guide from 0.3.x to vNext
2-
====================================
1+
# Migration Guide from 0.3.x to v0.4.x
32

4-
Initialsation
5-
-------------
3+
## Initialization
64

75
You no longer have to set up clocks and pass them to `esp_hal_embassy::init`.
86

esp-hal-procmacros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-hal-procmacros"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
edition = "2021"
55
rust-version = "1.76.0"
66
description = "Procedural macros for esp-hal"

0 commit comments

Comments
 (0)