diff --git a/CHANGELOG.md b/CHANGELOG.md index 560ea4e..cc5e582 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/soanvig/runmany/compare/v0.2.3...v0.3.0) (2024-10-20) + + +### Features + +* add output coloring and --no-color flag ([850f25b](https://github.com/soanvig/runmany/commit/850f25b8d6f92e078561583ef59b5255beb4095f)), closes [#1](https://github.com/soanvig/runmany/issues/1) + ## 0.2.3 (2024-10-20) diff --git a/Cargo.lock b/Cargo.lock index 2df1b81..ab2b348 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,7 +20,7 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "runmany" -version = "0.2.3" +version = "0.3.0" dependencies = [ "colored", ] diff --git a/Cargo.toml b/Cargo.toml index 1356344..75a04b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runmany" -version = "0.2.3" +version = "0.3.0" edition = "2021" description = "Easily run multiple long-running commands in parallel." license = "GPL-3.0"