Prepare v0.12.0 release (#429)

* build: Update deps

* docs: Udpate changelog

* ci: Add changelog check
This commit is contained in:
Sergio Gasquez Arcos 2024-06-12 16:28:11 +02:00 committed by GitHub
parent 8d8d4124df
commit a3322797aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 542 additions and 331 deletions

21
.github/workflows/changelog.yaml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Changelog check
on:
pull_request:
# Run on labeled/unlabeled in addition to defaults to detect
# adding/removing skip-changelog labels.
types: [opened, reopened, labeled, unlabeled, synchronize]
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: dangoslen/changelog-enforcer@v3
with:
changeLogPath: CHANGELOG.md
skipLabels: "skip-changelog"
missingUpdateErrorMessage: "Please add a changelog entry in the CHANGELOG.md file."

View File

@ -5,16 +5,14 @@ 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]
## [0.12.0] - 2024-06-12
### Added
- Added support for LLVM 17
### Fixed
- Added support for SOCKS5 proxy (#423)
### Changed
### Removed
- Update LLVM version to `esp-17.0.1_20240419` (#427)
- Update dependencies (#429)
## [0.11.0] - 2024-02-02
@ -118,7 +116,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.11.0...HEAD
[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
[0.9.0]: https://github.com/esp-rs/espup/compare/v0.8.0...v0.9.0

801
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "espup"
version = "0.11.1-dev"
version = "0.12.0"
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@ -14,39 +14,38 @@ categories = ["command-line-utilities", "development-tools", "embedded"]
rust-version = "1.74.1"
[dependencies]
async-trait = "0.1.77"
clap = { version = "4.4.18", features = ["derive", "env"] }
clap_complete = "4.4.9"
console = "0.15.8"
async-trait = "0.1.80"
clap = { version = "4.5.7", features = ["derive", "env"] }
clap_complete = "4.5.5"
directories = "5.0.1"
env_logger = "0.11.1"
flate2 = "1.0.28"
env_logger = "0.11.3"
flate2 = "1.0.30"
guess_host_triple = "0.1.3"
log = "0.4.20"
miette = { version = "5.10.0", features = ["fancy"] }
regex = "1.10.3"
log = "0.4.21"
miette = { version = "7.2.0", features = ["fancy"] }
regex = "1.10.5"
reqwest = { version = "0.12.4", features = ["blocking", "socks"] }
retry = "2.0.0"
serde_json = "1.0.113"
strum = { version = "0.26.1", features = ["derive"] }
tar = "0.4.40"
tempfile = "3.9.0"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["full"] }
serde_json = "1.0.117"
strum = { version = "0.26.2", features = ["derive"] }
tar = "0.4.41"
tempfile = "3.10.1"
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["full"] }
tokio-retry = "0.3.0"
update-informer = "1.1.0"
xz2 = "0.1.7"
zip = "1.1.1"
zip = "2.1.3"
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.63", features = ["vendored"] }
openssl = { version = "0.10.64", features = ["vendored"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
winapi = { version = "0.3.9", features = ["winuser"] }
winapi = { version = "0.3.9", features = ["winuser"] }
[dev-dependencies]
assert_cmd = "2.0.13"
assert_cmd = "2.0.14"
[package.metadata.binstall]
bin-dir = "{ bin }{ binary-ext }"