From eb257532e40f656d0685603d792e274f11f47d8c Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Tue, 5 Apr 2016 22:56:20 -0700 Subject: [PATCH] Cut version 0.33.0 --- CHANGELOG.md | 24 ++++++++++++++++-------- lib/overcommit/version.rb | 2 +- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab7b7fc..b8d3c41b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,29 @@ # Overcommit Changelog -## master (unreleased) +## 0.33.0 + +### New Features + +* Add global `quiet` option which silences all hook output except in the case + of warning or error + +### Changes -* Fix `AuthorName`/`AuthorEmail` pre-commit hooks to respect - `GIT_AUTHOR_NAME`/`GIT_AUTHOR_EMAIL` environment variables, respectively -* Fix `JavaCheckstyle` pre-commit hook to ignore `[ERROR]` prefix when parsing - output messages * Official support for Rubinius has been dropped. It will probably still work for most use cases, but parallelized hook runs may be problematic. If someone from the community is willing to step up to support it, we'll gladly add it - back. -* Add global `quiet` option which silences all hook output except in the case - of warning or error + back * Change `overcommit` CLI to automatically run within a Bundler context if the `gemfile` option is specified. This mainly saves you from needing `bundle exec` when running `overcommit --run` +### Bug Fixes + +* Fix `AuthorName`/`AuthorEmail` pre-commit hooks to respect + `GIT_AUTHOR_NAME`/`GIT_AUTHOR_EMAIL` environment variables, respectively +* Fix `JavaCheckstyle` pre-commit hook to ignore `[ERROR]` prefix when parsing + output messages + ## 0.32.0 ### New Features diff --git a/lib/overcommit/version.rb b/lib/overcommit/version.rb index 637b4c29..438d3f85 100644 --- a/lib/overcommit/version.rb +++ b/lib/overcommit/version.rb @@ -2,5 +2,5 @@ # Defines the gem version. module Overcommit - VERSION = '0.32.0'.freeze + VERSION = '0.33.0'.freeze end