diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cb0c645..347f80ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +## [v0.3.5] - 2022-10-07 + - [#357] Update to `clap 4.0` - [#349] Add `PROBE_RUN_SPEED` env variable - [#345] Update dev-dependency `serial_test` - [#344] Replace `pub(crate)` with `pub` - [#343] Mark `v0.3.4` as released in `CHANGELOG.md` -- [#353] Add option to verify written flash +- [#353] Add `--verify` option to verify written flash [#357]: https://github.com/knurling-rs/probe-run/pull/357 [#349]: https://github.com/knurling-rs/probe-run/pull/349 @@ -434,7 +436,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p Initial release -[Unreleased]: https://github.com/knurling-rs/probe-run/compare/v0.3.4...main +[Unreleased]: https://github.com/knurling-rs/probe-run/compare/v0.3.5...main +[v0.3.4]: https://github.com/knurling-rs/probe-run/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/knurling-rs/probe-run/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/knurling-rs/probe-run/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/knurling-rs/probe-run/compare/v0.3.1...v0.3.2 diff --git a/Cargo.lock b/Cargo.lock index 3e5d8185..a43758ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -555,14 +555,16 @@ dependencies = [ [[package]] name = "nix" -version = "0.24.2" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" +checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" dependencies = [ + "autocfg", "bitflags", "cfg-if", "libc", "memoffset", + "pin-utils", ] [[package]] @@ -648,6 +650,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + [[package]] name = "pkg-config" version = "0.3.25" @@ -723,7 +731,7 @@ dependencies = [ [[package]] name = "probe-run" -version = "0.3.4" +version = "0.3.5" dependencies = [ "addr2line", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index dceb438c..4bc4efc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "probe-run" readme = "README.md" repository = "https://github.com/knurling-rs/probe-run" -version = "0.3.4" +version = "0.3.5" [dependencies] addr2line = { version = "0.18", default-features = false, features = [ @@ -36,5 +36,5 @@ insta = "~1.11" os_pipe = "1.0" pretty_assertions = "1" rstest = { version = "0.15", default-features = false } -nix = "0.24" +nix = "0.25" serial_test = { version = "0.9", default-features = false }