Prepare Release 0.12.2 (#438)

* build: Update dependencies and bump espup version

* docs: Update changelog
This commit is contained in:
Sergio Gasquez Arcos 2024-07-18 13:41:37 +02:00 committed by GitHub
parent f3afdf472c
commit dda3061202
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 23 deletions

View File

@ -5,17 +5,11 @@ 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
## [0.12.2] - 2024-07-18
### Fixed
- Fix extended LLVM mode regression for LLVM versions < 17 introduced by #432. (#437)
### Changed
### Removed
## [0.12.1] - 2024-07-15
### Fixed
@ -131,7 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2022-10-07
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.12.1...HEAD
[0.12.1]: https://github.com/esp-rs/espup/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/esp-rs/espup/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/esp-rs/espup/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/esp-rs/espup/compare/v0.10.0...v0.11.0

24
Cargo.lock generated
View File

@ -394,9 +394,9 @@ dependencies = [
[[package]]
name = "deflate64"
version = "0.1.8"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83ace6c86376be0b6cdcf3fb41882e81d94b31587573d1cfa9d01cd06bba210d"
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
[[package]]
name = "deranged"
@ -550,7 +550,7 @@ dependencies = [
[[package]]
name = "espup"
version = "0.12.2-dev"
version = "0.12.2"
dependencies = [
"assert_cmd",
"async-trait",
@ -1308,7 +1308,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
"cfg-if",
"libc",
"redox_syscall 0.5.2",
"redox_syscall 0.5.3",
"smallvec",
"windows-targets 0.52.6",
]
@ -1465,9 +1465,9 @@ dependencies = [
[[package]]
name = "redox_syscall"
version = "0.5.2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
dependencies = [
"bitflags 2.6.0",
]
@ -2037,18 +2037,18 @@ dependencies = [
[[package]]
name = "thiserror"
version = "1.0.62"
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb"
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.62"
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c"
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
dependencies = [
"proc-macro2",
"quote",
@ -2091,9 +2091,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.38.0"
version = "1.38.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df"
dependencies = [
"backtrace",
"bytes",

View File

@ -1,6 +1,6 @@
[package]
name = "espup"
version = "0.12.2-dev"
version = "0.12.2"
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@ -30,8 +30,8 @@ serde_json = "1.0.120"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.41"
tempfile = "3.10.1"
thiserror = "1.0.62"
tokio = { version = "1.38.0", features = ["full"] }
thiserror = "1.0.63"
tokio = { version = "1.38.1", features = ["full"] }
tokio-retry = "0.3.0"
update-informer = "1.1.0"
xz2 = "0.1.7"