diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb05684..138b2df 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,5 +23,4 @@ jobs: uses: actions-rs/cargo@v1 with: command: publish - env: - CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} + args: --token ${{ secrets.CRATES_IO_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index be7b500..ea6a133 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/blanket/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/althonos/blanket/compare/v0.1.4...HEAD + + +## [v0.1.4] - 2021-05-31 + +[v0.1.4]: https://github.com/althonos/blanket/compare/v0.1.3...v0.1.4 + +### Fixed +- Generics being erroneously repeated when deriving a trait with + bounded generic arguments ([#2](https://github.com/althonos/blanket/issues/2)). ## [v0.1.3] - 2020-10-13 diff --git a/Cargo.toml b/Cargo.toml index 39bfbca..3429380 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blanket" -version = "0.1.3" +version = "0.1.4" authors = ["Martin Larralde "] edition = "2018" license = "MIT"