diff --git a/CHANGELOG.md b/CHANGELOG.md index 606a477..2712044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,38 @@ All notable changes to this project will be documented in this file. +## [1.4.0] - 2023-10-04 + +[be3cc40...a97993c](https://github.com/dustinblackman/cargo-run-bin/compare/be3cc4059b7d961819d3c47268f30ee1b87b0ec1...a97993c9abb74259084f37857a40c3f6b2dad576) + +### Documentation + +- Add git ([a97993c](https://github.com/dustinblackman/cargo-run-bin/commit/a97993c9abb74259084f37857a40c3f6b2dad576)) + +### Features + +- Support git in package source ([7151499](https://github.com/dustinblackman/cargo-run-bin/commit/7151499b4b47861f84c63b958af8cd36aa8648a9)) + +### Miscellaneous Tasks + +- Lint ([ebba9c4](https://github.com/dustinblackman/cargo-run-bin/commit/ebba9c44f97ab0331f8114b72a99caf60c0d8de4)) + +### Testing + +- Additional git flows ([a6144eb](https://github.com/dustinblackman/cargo-run-bin/commit/a6144ebcb9bb38479a78b8caf50afbd27551983d)) + ## [1.3.2] - 2023-09-20 -[83349f9...3c15340](https://github.com/dustinblackman/cargo-run-bin/compare/83349f99e01d665336d26ff7753ffb2a5a6ffb12...3c153408947f3aee7a09d7041c9a1d9fdfe5f3a5) +[83349f9...be3cc40](https://github.com/dustinblackman/cargo-run-bin/compare/83349f99e01d665336d26ff7753ffb2a5a6ffb12...be3cc4059b7d961819d3c47268f30ee1b87b0ec1) ### Bug Fixes - Deserailizing default-features ([3c15340](https://github.com/dustinblackman/cargo-run-bin/commit/3c153408947f3aee7a09d7041c9a1d9fdfe5f3a5)) +### Miscellaneous Tasks + +- Release cargo-run-bin version 1.3.2 ([be3cc40](https://github.com/dustinblackman/cargo-run-bin/commit/be3cc4059b7d961819d3c47268f30ee1b87b0ec1)) + ## [1.3.1] - 2023-09-20 [f044465...83349f9](https://github.com/dustinblackman/cargo-run-bin/compare/f044465c6df800fd4694334982cffa76a7157ec2...83349f99e01d665336d26ff7753ffb2a5a6ffb12) diff --git a/Cargo.lock b/Cargo.lock index 9b5a793..202ab14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -96,7 +96,7 @@ checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad" [[package]] name = "cargo-run-bin" -version = "1.3.2" +version = "1.4.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 55d920b..79b078b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-run-bin" -version = "1.3.2" +version = "1.4.0" authors = ["Dustin Blackman"] categories = ["command-line-utilities", "development-tools::cargo-plugins"] edition = "2021"