Prepare 0.12.1 release (#434)

* build: Update dependencies

* build: Bump espup version

* docs: Update changelog
This commit is contained in:
Sergio Gasquez Arcos 2024-07-15 09:43:05 +02:00 committed by GitHub
parent 9c0234d118
commit e5bf496aaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 205 additions and 391 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.1] - 2024-07-15
### Fixed
- Make both `libclang.so` available again when installing the extended LLVM for LLVM versions >= 17 (#432)
### Changed
### Removed
## [0.12.0] - 2024-06-12
### Added
@ -126,7 +120,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.0...HEAD
[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
[0.10.0]: https://github.com/esp-rs/espup/compare/v0.9.0...v0.10.0

568
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "espup"
version = "0.12.1-dev"
version = "0.12.1"
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@ -14,23 +14,23 @@ categories = ["command-line-utilities", "development-tools", "embedded"]
rust-version = "1.74.1"
[dependencies]
async-trait = "0.1.80"
clap = { version = "4.5.7", features = ["derive", "env"] }
clap_complete = "4.5.5"
async-trait = "0.1.81"
clap = { version = "4.5.9", features = ["derive", "env"] }
clap_complete = "4.5.8"
directories = "5.0.1"
env_logger = "0.11.3"
flate2 = "1.0.30"
guess_host_triple = "0.1.3"
log = "0.4.21"
log = "0.4.22"
miette = { version = "7.2.0", features = ["fancy"] }
regex = "1.10.5"
reqwest = { version = "0.12.4", features = ["blocking", "socks"] }
reqwest = { version = "0.12.5", features = ["blocking", "socks"] }
retry = "2.0.0"
serde_json = "1.0.117"
strum = { version = "0.26.2", features = ["derive"] }
serde_json = "1.0.120"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.41"
tempfile = "3.10.1"
thiserror = "1.0.61"
thiserror = "1.0.62"
tokio = { version = "1.38.0", features = ["full"] }
tokio-retry = "0.3.0"
update-informer = "1.1.0"