diff --git a/CHANGELOG.md b/CHANGELOG.md index ca8a6ef9..89349d66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,20 @@ # Overcommit Changelog -## master (unreleased) +## 0.30.0 + +### New Features -* Fix `--run` flag to not block reading STDIN when using existing hook scripts * Add `Dogma` pre-commit hook to lint Elixir files with [dogma](http://elixir-lang.org/) files * Add `Minitest` pre-push hook to run Minitest tests -* Fix `RuboCop` pre-commit hook to fail when RuboCop version specified by - Bundler context is not available * Add `RailsBestPractices` pre-commit hook which lints code with [`rails_best_practices`](https://github.com/railsbp/rails_best_practices) + +### Bug Fixes + +* Fix `--run` flag to not block reading STDIN when using existing hook scripts +* Fix `RuboCop` pre-commit hook to fail when RuboCop version specified by + Bundler context is not available * Fix `TextWidth` commit-msg hook to not include newline characters in calculated width diff --git a/lib/overcommit/version.rb b/lib/overcommit/version.rb index 0ed3cafe..76e7abae 100644 --- a/lib/overcommit/version.rb +++ b/lib/overcommit/version.rb @@ -1,4 +1,4 @@ # Defines the gem version. module Overcommit - VERSION = '0.29.1' + VERSION = '0.30.0' end