Skip to content

Commit

Permalink
Bumped version to 0.3.0
Browse files Browse the repository at this point in the history
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 :-)
  • Loading branch information
jroovers-cisco committed Sep 11, 2015
1 parent 3ab56fc commit b819994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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) ##
Expand Down
2 changes: 1 addition & 1 deletion gitlint/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0dev"
__version__ = "0.3.0"

0 comments on commit b819994

Please sign in to comment.