diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b5cbd..d48fab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## Release 1.5.0 + +* Update to comply with current standardrb rules, and use checkout@v4 +* Add a `-X/--exec` argument that allows you to let qq craft the command, but + then actually exec the command instead of running it and handling its output. + Especially useful for things like `rspec`, where the output it gives you about + failing tests is very useful, and qq is mostly only helpful for determining + what specs to run. +* Add a `--message-format` argument and `message_format` config file option, + which allow for a fairly complex configuration of the output format for + messages, so they can be displayed in various colorized/tabular formats. + ## Release 1.4.0 * Support specifying `excludes` per-tool, so that certain files won't be passed diff --git a/lib/quiet_quality/version.rb b/lib/quiet_quality/version.rb index 2071011..bc8fb93 100644 --- a/lib/quiet_quality/version.rb +++ b/lib/quiet_quality/version.rb @@ -1,3 +1,3 @@ module QuietQuality - VERSION = "1.4.0" + VERSION = "1.5.0" end