Skip to content

Commit bdfec37

Browse files
authored
New package releases (#2569)
* New package releases * Update `CHANGELOG.md` for all packages to be published
1 parent 73a6e32 commit bdfec37

File tree

19 files changed

+123
-55
lines changed

19 files changed

+123
-55
lines changed

esp-config/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Removed
1717

18-
## [0.1.0] - 2024-10-10
18+
## 0.2.0 - 2024-11-20
19+
20+
### Added
21+
22+
- Add configuration validation (#2475)
23+
24+
## 0.1.0 - 2024-10-10
1925

2026
- Initial release
2127

22-
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-config?since=2024-10-10
28+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-config?since=2024-11-20

esp-config/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-config"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
rust-version = "1.79.0"
66
description = "Configure projects using esp-hal and related packages"

esp-hal-embassy/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Changed
13+
14+
### Fixed
15+
16+
### Removed
17+
18+
## 0.5.0 - 2024-11-20
19+
20+
### Added
21+
1222
- `ESP_HAL_EMBASSY_LOW_POWER_WAIT` configuration option. (#2329)
1323

1424
### Changed
@@ -55,4 +65,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5565

5666
## 0.1.0 - 2024-06-04
5767

58-
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-embassy?since=2024-10-10
68+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-embassy?since=2024-11-20

esp-hal-embassy/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-hal-embassy"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
rust-version = "1.79.0"
66
description = "Embassy support for esp-hal"
@@ -12,20 +12,20 @@ default-target = "riscv32imac-unknown-none-elf"
1212
features = ["esp32c6"]
1313

1414
[dependencies]
15-
critical-section = "1.1.3"
15+
critical-section = "1.2.0"
1616
defmt = { version = "0.3.8", optional = true }
1717
document-features = "0.2.10"
18-
embassy-executor = { version = "0.6.0", optional = true }
18+
embassy-executor = { version = "0.6.3", optional = true }
1919
embassy-time-driver = { version = "0.1.0", features = [ "tick-hz-1_000_000" ] }
20-
esp-hal = { version = "0.21.0", path = "../esp-hal" }
20+
esp-hal = { version = "0.22.0", path = "../esp-hal" }
2121
log = { version = "0.4.22", optional = true }
22-
macros = { version = "0.14.0", features = ["embassy"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
22+
macros = { version = "0.15.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-config = { version = "0.1.0", path = "../esp-config", features = ["build"] }
28+
esp-config = { version = "0.2.0", path = "../esp-config", features = ["build"] }
2929
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
3030

3131
[features]

esp-hal-procmacros/CHANGELOG.md

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

1616
### Removed
1717

18+
## [0.15.0] - 2024-11-20
19+
20+
### Changed
21+
22+
- Remove `get_` prefix from functions (#2528)
23+
1824
## [0.14.0] - 2024-10-10
1925

2026
## [0.13.0] - 2024-08-29
@@ -45,4 +51,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4551

4652
- Initial release
4753

48-
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-procmacros?since=2024-10-10
54+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-procmacros?since=2024-11-20

esp-hal-procmacros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-hal-procmacros"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
rust-version = "1.76.0"
66
description = "Procedural macros for esp-hal"
@@ -20,9 +20,9 @@ litrs = "0.4.1"
2020
object = { version = "0.36.5", optional = true, default-features = false, features = ["read_core", "elf"] }
2121
proc-macro-crate = "3.2.0"
2222
proc-macro-error2 = "2.0.1"
23-
proc-macro2 = "1.0.87"
23+
proc-macro2 = "1.0.89"
2424
quote = "1.0.37"
25-
syn = { version = "2.0.79", features = ["extra-traits", "full"] }
25+
syn = { version = "2.0.87", features = ["extra-traits", "full"] }
2626

2727
[features]
2828
## Provide a `#[main]` procmacro to mark the entry point for Embassy applications.

esp-hal/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Changed
13+
14+
### Fixed
15+
16+
### Removed
17+
18+
## [0.22.0] - 2024-11-20
19+
20+
### Added
21+
1222
- A new config option `PLACE_SWITCH_TABLES_IN_RAM` to improve performance (especially for interrupts) at the cost of slightly more RAM usage (#2331)
1323
- A new config option `PLACE_ANON_IN_RAM` to improve performance (especially for interrupts) at the cost of RAM usage (#2331)
1424
- Add burst transfer support to DMA buffers (#2336)
@@ -920,7 +930,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
920930

921931
## [0.1.0] - 2022-08-05
922932

923-
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.21.1...HEAD
933+
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.22.0...HEAD
934+
[0.22.0]: https://github.com/esp-rs/esp-hal/compare/v0.21.1...v0.22.0
924935
[0.21.1]: https://github.com/esp-rs/esp-hal/compare/v0.21.0...v0.21.1
925936
[0.21.0]: https://github.com/esp-rs/esp-hal/compare/v0.20.1...v0.21.0
926937
[0.20.1]: https://github.com/esp-rs/esp-hal/compare/v0.20.0...v0.20.1

esp-hal/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-hal"
3-
version = "0.21.1"
3+
version = "0.22.0"
44
edition = "2021"
55
rust-version = "1.79.0"
66
description = "Bare-metal HAL for Espressif devices"
@@ -16,13 +16,13 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
bitflags = "2.6.0"
19-
bytemuck = "1.18.0"
20-
bitfield = "0.16.1"
19+
bytemuck = "1.19.0"
20+
bitfield = "0.17.0"
2121
cfg-if = "1.0.0"
2222
chrono = { version = "0.4.38", default-features = false }
23-
critical-section = "1.1.3"
23+
critical-section = "1.2.0"
2424
defmt = { version = "0.3.8", optional = true }
25-
delegate = "0.12.0"
25+
delegate = "0.13.1"
2626
digest = { version = "0.10.7", default-features = false, optional = true }
2727
document-features = "0.2.10"
2828
embassy-embedded-hal = "0.2.0"
@@ -44,8 +44,8 @@ log = { version = "0.4.22", optional = true }
4444
nb = "1.1.0"
4545
paste = "1.0.15"
4646
portable-atomic = { version = "1.9.0", default-features = false }
47-
procmacros = { version = "0.14.0", features = ["enum-dispatch", "interrupt", "ram"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
48-
riscv = { version = "0.11.1", optional = true }
47+
procmacros = { version = "0.15.0", features = ["enum-dispatch", "interrupt", "ram"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
48+
riscv = { version = "0.12.1", optional = true }
4949
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
5050
void = { version = "1.0.2", default-features = false }
5151
usb-device = { version = "0.3.2", optional = true }
@@ -65,18 +65,18 @@ esp32s2 = { version = "0.25.0", features = ["critical-section", "rt"], optional
6565
esp32s3 = { version = "0.29.0", features = ["critical-section", "rt"], optional = true }
6666

6767
[target.'cfg(target_arch = "riscv32")'.dependencies]
68-
esp-riscv-rt = { version = "0.9.0", path = "../esp-riscv-rt" }
68+
esp-riscv-rt = { version = "0.9.1", path = "../esp-riscv-rt" }
6969

7070
[target.'cfg(target_arch = "xtensa")'.dependencies]
71-
xtensa-lx-rt = { version = "0.17.0", path = "../xtensa-lx-rt" }
71+
xtensa-lx-rt = { version = "0.17.2", path = "../xtensa-lx-rt" }
7272

7373
[build-dependencies]
7474
basic-toml = "0.1.9"
7575
cfg-if = "1.0.0"
7676
esp-build = { version = "0.1.0", path = "../esp-build" }
7777
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
78-
esp-config = { version = "0.1.0", path = "../esp-config", features = ["build"] }
79-
serde = { version = "1.0.210", features = ["derive"] }
78+
esp-config = { version = "0.2.0", path = "../esp-config", features = ["build"] }
79+
serde = { version = "1.0.215", features = ["derive"] }
8080

8181
[features]
8282
default = []

esp-ieee802154/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-
- Removed `get_` prefixes from functions (#2528)
15-
1614
### Fixed
1715

1816
### Removed
1917

18+
## 0.4.0 - 2024-11-20
19+
20+
### Removed
21+
22+
- Removed `get_` prefixes from functions (#2528)
23+
2024
## 0.3.1 - 2024-10-10
2125

2226
- Bumped esp-wifi-sys to `v0.6.0`
@@ -54,4 +58,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5458

5559
- Initial release
5660

57-
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-ieee802154?since=2024-10-10
61+
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-ieee802154?since=2024-11-20

esp-ieee802154/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esp-ieee802154"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.76.0"
66
description = "Low-level IEEE 802.15.4 driver for the ESP32-C6 and ESP32-H2"
@@ -17,19 +17,19 @@ test = false
1717

1818
[dependencies]
1919
byte = "0.2.7"
20-
critical-section = "1.1.3"
20+
critical-section = "1.2.0"
2121
document-features = "0.2.10"
22-
esp-hal = { version = "0.21.0", path = "../esp-hal" }
23-
esp-wifi-sys = { version = "0.6.0", git = "https://github.com/esp-rs/esp-wifi-sys.git", rev = "a3e2ed64e9095f120bbcebe6287ddf62760774db" }
22+
esp-hal = { version = "0.22.0", path = "../esp-hal" }
23+
esp-wifi-sys = "0.7.0"
2424
heapless = "0.8.0"
2525
ieee802154 = "0.6.1"
2626
cfg-if = "1.0.0"
27-
esp-config = { version = "0.1.0", path = "../esp-config" }
27+
esp-config = { version = "0.2.0", path = "../esp-config" }
2828
defmt = { version = "0.3.8", optional = true }
2929
log = { version = "0.4.22", optional = true }
3030

3131
[build-dependencies]
32-
esp-config = { version = "0.1.0", path = "../esp-config" }
32+
esp-config = { version = "0.2.0", path = "../esp-config" }
3333

3434

3535
[features]

0 commit comments

Comments
 (0)