From 35a53aa3dcdf378434c63ec036e27a6763f67dde Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Wed, 4 Oct 2023 11:16:05 +0200 Subject: [PATCH] Prepare v0.6.1 release (#368) * build: Bump dependencies and espup version --- CHANGELOG.md | 9 +++------ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 500ed2c9..26006376 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,18 +5,15 @@ 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.6.1] - 2023-10-04 ### Changed +- Remove unnecesary CI jobs (#369) ### Fixed - Create $RUSTUP_HOME/tmp if needed (#365) - Complete Xtensa Rust versions when provided one is incompleted (#366) -### Removed - ## [0.6.0] - 2023-10-02 ### Added @@ -68,7 +65,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.6.0...HEAD +[0.6.1]: https://github.com/esp-rs/espup/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/esp-rs/espup/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/esp-rs/espup/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/esp-rs/espup/compare/v0.4.0...v0.4.1 diff --git a/Cargo.lock b/Cargo.lock index 4a4ea86f..53346b2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "espup" -version = "0.6.1-dev" +version = "0.6.1" dependencies = [ "assert_cmd", "async-trait", @@ -1354,9 +1354,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "reqwest" -version = "0.11.21" +version = "0.11.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef" +checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" dependencies = [ "base64", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 798fe02d..ca524588 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "espup" -version = "0.6.1-dev" +version = "0.6.1" authors = ["Sergio Gasquez Arcos "] edition = "2021" license = "MIT OR Apache-2.0" @@ -25,7 +25,7 @@ guess_host_triple = "0.1.3" log = "0.4.20" miette = { version = "5.10.0", features = ["fancy"] } regex = "1.9.6" -reqwest = { version = "0.11.21", features = ["blocking"] } +reqwest = { version = "0.11.22", features = ["blocking"] } retry = "2.0.0" serde_json = "1.0.107" strum = { version = "0.25.0", features = ["derive"] }