summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2015-09-11 19:25:12 +0200
committerJoris Roovers <jroovers@cisco.com>2015-09-11 19:26:58 +0200
commitb819994fcfb91bd38ffe1dad13e5db253a806c27 (patch)
treeeda3fde4d35afb72c3f21805ae2621c5f6c87c57
parent3ab56fc43d0db92b6b191c5cb1b7146355fbd684 (diff)
Bumped version to 0.3.0v0.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 :-)
-rw-r--r--CHANGELOG.md3
-rw-r--r--gitlint/__init__.py2
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"