From fbe33badbb11015df7acd0a57cbadf289628d39e Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 1 Apr 2024 19:24:15 +0800 Subject: [PATCH] chore: release v0.0.17 (#18) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `cargo-shear`: 0.0.16 -> 0.0.17 (✓ API compatible changes)
Changelog

## [0.0.17](/~https://github.com/Boshen/cargo-shear/compare/v0.0.16...v0.0.17) - 2024-04-01 ### Fixed - ignored packages by package name instead of normalized name ### Other - fix broken ci - make `shear_package` the more readable - minor tweak - add `--no-deps` to `cargo metadata` - add `just ready` - run shear on this repo

--- This PR was generated with [release-plz](/~https://github.com/MarcoIeni/release-plz/). Signed-off-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 380cf4e..9231821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.17](/~https://github.com/Boshen/cargo-shear/compare/v0.0.16...v0.0.17) - 2024-04-01 + +### Fixed +- ignored packages by package name instead of normalized name + +### Other +- fix broken ci +- make `shear_package` the more readable +- minor tweak +- add `--no-deps` to `cargo metadata` +- add `just ready` +- run shear on this repo + ## [0.0.16](/~https://github.com/Boshen/cargo-shear/compare/v0.0.15...v0.0.16) - 2024-03-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index 76d48f5..21aec51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ [[package]] name = "cargo-shear" -version = "0.0.16" +version = "0.0.17" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index ea12607..b92b8fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shear" -version = "0.0.16" +version = "0.0.17" edition = "2021" description = "Detect and remove unused dependencies from Cargo.toml" authors = ["Boshen "]