diff --git a/CHANGELOG.md b/CHANGELOG.md index 13479d6..624574b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.6.0] - 2021-12-12 +### Added +- [#7]: add `-X` option to run a program other than `git` +- [#8]: add `-j` option to limit the maximum number of repos to process in parallel + +### Changed +- replaced Travis CI with GitHub Actions + +[#7]: https://github.com/mattmahn/gitall.rs/issues/7 +[#8]: https://github.com/mattmahn/gitall.rs/issues/8 + + ## [0.5.0] - 2021-02-22 ### Added - crate/library entrypoint so `gitalll` can now be used as a library in other projects @@ -76,7 +88,8 @@ No changes except to fix my deploy script. This is same code as v0.2.1. - `-D`/`--directory` option to set the search directory to something other than the current working directory -[Unreleased]: https://github.com/mattmahn/gitall.rs/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/mattmahn/gitall.rs/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/mattmahn/gitall.rs/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/mattmahn/gitall.rs/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/mattmahn/gitall.rs/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/mattmahn/gitall.rs/compare/v0.2.2...v0.3.0 diff --git a/Cargo.lock b/Cargo.lock index f7d4a87..7f64695 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aho-corasick" version = "0.7.14" @@ -117,7 +119,7 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "gitall" -version = "0.5.0" +version = "0.6.0" dependencies = [ "atty", "clap", diff --git a/Cargo.toml b/Cargo.toml index a34d52b..e34ae95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitall" -version = "0.5.0" +version = "0.6.0" authors = ["Matthew Mahnke "] edition = "2018" description = "Executes git(1) commands in repos below a parent directory"