diff --git a/.github/workflows/release.yml b/.github/workflows/release-binaries.yml similarity index 81% rename from .github/workflows/release.yml rename to .github/workflows/release-binaries.yml index d9700b1..af5f91b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release-binaries.yml @@ -1,5 +1,4 @@ -# Copied from https://github.com/taiki-e/cargo-no-dev-deps/blob/main/.github/workflows/release.yml -name: Release +name: Release Binaries on: release: @@ -13,17 +12,6 @@ permissions: contents: write jobs: - create-release: - runs-on: ubuntu-latest - steps: - - uses: taiki-e/checkout-action@v1 - - - uses: taiki-e/create-gh-release-action@v1 - with: - changelog: CHANGELOG.md - allow-missing-changelog: true - token: ${{ secrets.GITHUB_TOKEN }} - upload-assets: name: ${{ matrix.target }} needs: create-release diff --git a/CHANGELOG.md b/CHANGELOG.md index 113657a..8033202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.13](https://github.com/Boshen/cargo-shear/compare/v0.0.12...v0.0.13) - 2024-03-26 + +### Fixed +- binary release + +### Other +- Rust v1.77.0 + ## [0.0.12](https://github.com/Boshen/cargo-shear/compare/v0.0.11...v0.0.12) - 2024-03-26 ### Other diff --git a/Cargo.lock b/Cargo.lock index b1a5cbb..e4395fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ [[package]] name = "cargo-shear" -version = "0.0.12" +version = "0.0.13" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index bd8ddda..f0d343b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shear" -version = "0.0.12" +version = "0.0.13" edition = "2021" description = "Detect and remove unused dependencies from Cargo.toml" authors = ["Boshen "] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 06c7458..2fe891c 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.76.0" +channel = "1.77.0" profile = "default"