From c39d021d86bba43641073780090083033e5f66da Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Wed, 13 Mar 2024 13:02:42 +0100 Subject: [PATCH] feat: Start new dev cycle --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 4 ++-- cargo-espflash/Cargo.toml | 4 ++-- espflash/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e01121c9..3a8cd721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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 + +### Fixed + +### Changed + +### Removed + + ## [3.0.0] - 2024-03-13 ### Fixed @@ -233,6 +244,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.0] - 2021-09-21 +[Unreleased]: https://github.com/esp-rs/espflash/compare/v3.0.0...HEAD [3.0.0]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.2...v3.0.0 [3.0.0-rc.2]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...v3.0.0-rc.2 [3.0.0-rc.1]: https://github.com/esp-rs/espflash/compare/v2.1.0...v3.0.0-rc.1 diff --git a/Cargo.lock b/Cargo.lock index aa59ad4b..93c6ed2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -405,7 +405,7 @@ dependencies = [ [[package]] name = "cargo-espflash" -version = "3.0.0" +version = "3.0.1-dev" dependencies = [ "cargo", "cargo_metadata", @@ -1140,7 +1140,7 @@ dependencies = [ [[package]] name = "espflash" -version = "3.0.0" +version = "3.0.1-dev" dependencies = [ "addr2line", "base64 0.22.0", diff --git a/cargo-espflash/Cargo.toml b/cargo-espflash/Cargo.toml index f62012f6..f2ba9ec1 100644 --- a/cargo-espflash/Cargo.toml +++ b/cargo-espflash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-espflash" -version = "3.0.0" +version = "3.0.1-dev" edition = "2021" rust-version = "1.74" description = "Cargo subcommand for flashing Espressif devices" @@ -24,7 +24,7 @@ cargo_metadata = "0.18.1" clap = { version = "4.5.2", features = ["derive", "wrap_help"] } env_logger = "0.11.3" esp-idf-part = "0.5.0" -espflash = { version = "3.0.0", path = "../espflash" } +espflash = { version = "3.0.1-dev", path = "../espflash" } log = "0.4.21" miette = { version = "7.2.0", features = ["fancy"] } serde = { version = "1.0.197", features = ["derive"] } diff --git a/espflash/Cargo.toml b/espflash/Cargo.toml index ce32a8e5..26ffd723 100644 --- a/espflash/Cargo.toml +++ b/espflash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "espflash" -version = "3.0.0" +version = "3.0.1-dev" edition = "2021" rust-version = "1.74" description = "A command-line tool for flashing Espressif devices"