mirror of
https://github.com/esp-rs/espup.git
synced 2025-10-02 23:25:16 +00:00
Prepare 0.15.0 release (#494)
* build: Bump dependencies * docs: Update changelog * build: Bump espup version to 0.15.0
This commit is contained in:
parent
ff183b698b
commit
edc9d64134
11
CHANGELOG.md
11
CHANGELOG.md
@ -5,18 +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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.15.0] - 2025-04-08
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Install `stable` Rust toolchain instead of `nightly` for RISC-V devices (#487)
|
- Install `stable` Rust toolchain instead of `nightly` for RISC-V devices (#487)
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
|
|
||||||
## [0.14.1] - 2025-03-04
|
## [0.14.1] - 2025-03-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -164,7 +157,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [0.1.0] - 2022-10-07
|
## [0.1.0] - 2022-10-07
|
||||||
|
|
||||||
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.14.1...HEAD
|
[0.15.0]: https://github.com/esp-rs/espup/compare/v0.14.1...v0.15.0
|
||||||
[0.14.1]: https://github.com/esp-rs/espup/compare/v0.14.0...v0.14.1
|
[0.14.1]: https://github.com/esp-rs/espup/compare/v0.14.0...v0.14.1
|
||||||
[0.14.0]: https://github.com/esp-rs/espup/compare/v0.13.0...v0.14.0
|
[0.14.0]: https://github.com/esp-rs/espup/compare/v0.13.0...v0.14.0
|
||||||
[0.13.0]: https://github.com/esp-rs/espup/compare/v0.12.2...v0.13.0
|
[0.13.0]: https://github.com/esp-rs/espup/compare/v0.12.2...v0.13.0
|
||||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -564,7 +564,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "espup"
|
name = "espup"
|
||||||
version = "0.14.1"
|
version = "0.15.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@ -1155,9 +1155,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jiff"
|
name = "jiff"
|
||||||
version = "0.2.5"
|
version = "0.2.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
|
checksum = "1f33145a5cbea837164362c7bd596106eb7c5198f97d1ba6f6ebb3223952e488"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"jiff-static",
|
"jiff-static",
|
||||||
"log",
|
"log",
|
||||||
@ -1168,9 +1168,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jiff-static"
|
name = "jiff-static"
|
||||||
version = "0.2.5"
|
version = "0.2.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
|
checksum = "43ce13c40ec6956157a3635d97a1ee2df323b263f09ea14165131289cb0f5c19"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
24
Cargo.toml
24
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "espup"
|
name = "espup"
|
||||||
version = "0.14.1"
|
version = "0.15.0"
|
||||||
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
|
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -14,33 +14,33 @@ categories = ["command-line-utilities", "development-tools", "embedded"]
|
|||||||
rust-version = "1.81.0"
|
rust-version = "1.81.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.87"
|
async-trait = "0.1.88"
|
||||||
bytes = "1.10.1"
|
bytes = "1.10.1"
|
||||||
clap = { version = "4.5.31", features = ["derive", "env"] }
|
clap = { version = "4.5.35", features = ["derive", "env"] }
|
||||||
clap_complete = "4.5.46"
|
clap_complete = "4.5.47"
|
||||||
directories = "6.0.0"
|
directories = "6.0.0"
|
||||||
env_logger = "0.11.7"
|
env_logger = "0.11.8"
|
||||||
flate2 = "1.1.0"
|
flate2 = "1.1.1"
|
||||||
guess_host_triple = "0.1.4"
|
guess_host_triple = "0.1.4"
|
||||||
indicatif = "0.17.11"
|
indicatif = "0.17.11"
|
||||||
indicatif-log-bridge = "0.2.3"
|
indicatif-log-bridge = "0.2.3"
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
log = "0.4.26"
|
log = "0.4.27"
|
||||||
miette = { version = "7.5.0", features = ["fancy"] }
|
miette = { version = "7.5.0", features = ["fancy"] }
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
reqwest = { version = "0.12.12", features = ["blocking", "socks", "stream"] }
|
reqwest = { version = "0.12.15", features = ["blocking", "socks", "stream"] }
|
||||||
retry = "2.0.0"
|
retry = "2.1.0"
|
||||||
serde_json = "1.0.140"
|
serde_json = "1.0.140"
|
||||||
strum = { version = "0.27.1", features = ["derive"] }
|
strum = { version = "0.27.1", features = ["derive"] }
|
||||||
tar = "0.4.44"
|
tar = "0.4.44"
|
||||||
tempfile = "3.18.0"
|
tempfile = "3.19.1"
|
||||||
thiserror = "2.0.12"
|
thiserror = "2.0.12"
|
||||||
tokio = { version = "1.43.0", features = ["full"] }
|
tokio = { version = "1.44.2", features = ["full"] }
|
||||||
tokio-retry = "0.3.0"
|
tokio-retry = "0.3.0"
|
||||||
tokio-stream = "0.1.17"
|
tokio-stream = "0.1.17"
|
||||||
update-informer = "1.2.0"
|
update-informer = "1.2.0"
|
||||||
xz2 = "0.1.7"
|
xz2 = "0.1.7"
|
||||||
zip = "2.2.3"
|
zip = "2.6.1"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
openssl = { version = "0.10.72", features = ["vendored"] }
|
openssl = { version = "0.10.72", features = ["vendored"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user