From d5a712e2a89ead27fbf424bdc44a2db0350f9996 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Sun, 4 Jul 2021 04:17:07 +0900 Subject: [PATCH] Release v0.17.0 --- CHANGELOG.md | 8 ++++---- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 6 +++--- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a263a8..be9e00e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ # Changelog -## [Unreleased] +## [0.17.0] - 2021-07-03Z ### Changed -- Improved the help. +- Improved the help. ([#143](https://github.com/qryxip/cargo-equip/pull/143)) Now you can read the detailed help with `--help` while `cargo equip -h` still prints a short and concise overview. -- Changed the format. +- Changed the format. ([#144](https://github.com/qryxip/cargo-equip/pull/144)) - Moved `__bundled` to `__cargo_equip::crates`. - Moved `__bundled::*::__macros` to `__cargo_equip::macros`. @@ -38,7 +38,7 @@ }; ``` -- Updated rust-analyzer to `2021-06-28`. +- Updated rust-analyzer to `2021-06-28`. ([#145](https://github.com/qryxip/cargo-equip/pull/145)) ## [0.16.0] - 2021-06-26Z diff --git a/Cargo.lock b/Cargo.lock index b20e270..f6662cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ [[package]] name = "cargo-equip" -version = "0.16.0" +version = "0.17.0" dependencies = [ "anyhow", "arrayvec 0.7.1", @@ -389,9 +389,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.9.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" [[package]] name = "heck" @@ -419,9 +419,9 @@ checksum = "1f7280c75fb2e2fc47080ec80ccc481376923acb04501957fc38f935c3de5088" [[package]] name = "indexmap" -version = "1.6.2" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3" +checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" dependencies = [ "autocfg", "hashbrown", @@ -837,9 +837,9 @@ checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" [[package]] name = "smol_str" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ca0f7ce3a29234210f0f4f0b56f8be2e722488b95cb522077943212da3b32eb" +checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0" dependencies = [ "serde", ] @@ -940,9 +940,9 @@ dependencies = [ [[package]] name = "test-case" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956044ef122917dde830c19dec5f76d0670329fde4104836d62ebcb14f4865f1" +checksum = "3b114ece25254e97bf48dd4bfc2a12bad0647adacfe4cae1247a9ca6ad302cec" dependencies = [ "cfg-if", "proc-macro2", @@ -998,9 +998,9 @@ checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" [[package]] name = "unicode-segmentation" -version = "1.7.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" +checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" [[package]] name = "unicode-width" diff --git a/Cargo.toml b/Cargo.toml index 68865a3..428e92b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-equip" -version = "0.16.0" +version = "0.17.0" authors = ["Ryo Yamashita "] edition = "2018" license = "MIT OR Apache-2.0" @@ -34,7 +34,7 @@ semver = "0.11.0" serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" shell-escape = "0.1.5" -smol_str = { version = "0.1.17", features = ["serde"] } +smol_str = { version = "0.1.18", features = ["serde"] } spdx = "0.4.1" structopt = "0.3.21" syn = { version = "1.0.73", features = ["extra-traits", "full", "parsing", "visit"] } @@ -49,4 +49,4 @@ xshell = "0.1.14" difference = "2.0.0" insta = "1.7.1" md5 = "0.7.0" -test-case = "1.1.0" +test-case = "1.2.0"