From 4e7c018954cef041cedc110c3aebb3e91cd15dde Mon Sep 17 00:00:00 2001 From: Jesse Braham Date: Thu, 13 Jul 2023 10:58:00 -0700 Subject: [PATCH] Begin next release cycle --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 4 ++-- cargo-espflash/Cargo.toml | 4 ++-- espflash/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d80aede..0f0dafe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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 + ## [2.0.1] - 2023-07-13 ### Added @@ -144,6 +154,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/v2.0.1...HEAD [2.0.1]: https://github.com/esp-rs/espflash/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/esp-rs/espflash/compare/v2.0.0-rc.4...v2.0.0 [2.0.0-rc.4]: https://github.com/esp-rs/espflash/compare/v2.0.0-rc.3...v2.0.0-rc.4 diff --git a/Cargo.lock b/Cargo.lock index d9204737..b7ffc6db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "cargo-espflash" -version = "2.0.1" +version = "2.0.2-dev" dependencies = [ "cargo", "cargo_metadata", @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "espflash" -version = "2.0.1" +version = "2.0.2-dev" dependencies = [ "addr2line", "base64", diff --git a/cargo-espflash/Cargo.toml b/cargo-espflash/Cargo.toml index bea20e75..eee3170a 100644 --- a/cargo-espflash/Cargo.toml +++ b/cargo-espflash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-espflash" -version = "2.0.1" +version = "2.0.2-dev" edition = "2021" rust-version = "1.65" description = "Cargo subcommand for flashing Espressif devices" @@ -29,7 +29,7 @@ cargo_metadata = "0.15.4" clap = { version = "4.3.11", features = ["derive", "wrap_help"] } env_logger = "0.10.0" esp-idf-part = "0.4.1" -espflash = { version = "2.0.1", path = "../espflash" } +espflash = { version = "=2.0.2-dev", path = "../espflash" } log = "0.4.19" miette = { version = "5.9.0", features = ["fancy"] } serde = { version = "1.0.171", features = ["derive"] } diff --git a/espflash/Cargo.toml b/espflash/Cargo.toml index d59969e1..60f4f242 100644 --- a/espflash/Cargo.toml +++ b/espflash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "espflash" -version = "2.0.1" +version = "2.0.2-dev" edition = "2021" rust-version = "1.65" description = "A command-line tool for flashing Espressif devices"