From b819994fcfb91bd38ffe1dad13e5db253a806c27 Mon Sep 17 00:00:00 2001 From: Joris Roovers Date: Fri, 11 Sep 2015 19:25:12 +0200 Subject: Bumped version to 0.3.0 Changes in 0.3.0 release: - title-must-not-contain-word now has a words option that can be used to specify which words should not occur in the title - gitlint violations are now printed to the stderr instead of stdout - Various minor bugfixes - gitlint now ignores commented out lines (i.e. starting with #) in your commit messages - Experimental: git commit-msg hook support - Under-the-hood: better test coverage :-) --- CHANGELOG.md | 3 ++- gitlint/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 968418e..44d5ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ # Changelog # -## v0.3.0dev (master) ## +## v0.3.0 (2015-09-11) ## - ```title-must-not-contain-word``` now has a ```words``` option that can be used to specify which words should not occur in the title - gitlint violations are now printed to the stderr instead of stdout - Various minor bugfixes - gitlint now ignores commented out lines (i.e. starting with #) in your commit messages +- Experimental: git commit-msg hook support - Under-the-hood: better test coverage :-) ## v0.2.0 (2015-09-10) ## diff --git a/gitlint/__init__.py b/gitlint/__init__.py index c7d7df6..493f741 100644 --- a/gitlint/__init__.py +++ b/gitlint/__init__.py @@ -1 +1 @@ -__version__ = "0.3.0dev" +__version__ = "0.3.0" -- cgit v1.2.3