summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <joris.roovers@gmail.com>2021-04-16 23:26:10 +0200
committerJoris Roovers <joris.roovers@gmail.com>2021-04-16 23:26:10 +0200
commit05815b6fa8481d04de394443a0ce6e248eaa02c9 (patch)
treedf410cfc4a0c1c67068d40f4d10c8ca5574a4b1c
parent0e099899d19b2b813896e6dd001941d6967cb6f8 (diff)
0.15.1 releasev0.15.1
Bugfixes: - Git commit message body with only new lines is not longer considered empty by `body-is-missing` (#176) - Added compatibility with `git commit -s` for `contrib-requires-signed-off-by` rule (#178) - Minor tweak to gitlint commit-hook output (#173) - All dependencies have been upgraded to the latest available versions - Minor doc fixes Full Release details in CHANGELOG.md.
-rw-r--r--CHANGELOG.md11
-rw-r--r--gitlint/__init__.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7eb2e0b..bb72596 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog #
+## v0.15.1 (2021-04-16) ##
+
+Contributors:
+Special thanks to all contributors for this release, in particular [PW999](https://github.com/PW999), [gsemet](https://github.com/gsemet) and [Lorac](https://github.com/Lorac).
+
+Bugfixes:
+ - Git commit message body with only new lines is not longer considered empty by `body-is-missing` ([#176](https://github.com/jorisroovers/gitlint/issues/176))
+ - Added compatibility with `git commit -s` for `contrib-requires-signed-off-by` rule ([#178](https://github.com/jorisroovers/gitlint/pull/178))
+- Minor tweak to gitlint commit-hook output ([#173](https://github.com/jorisroovers/gitlint/pull/173))
+- All dependencies have been upgraded to the latest available versions (`Click==7.1.2`, `arrow==1.0.3`, `sh==1.14.1`).
+- Minor doc fixes
## v0.15.0 (2020-11-27) ##
Contributors:
diff --git a/gitlint/__init__.py b/gitlint/__init__.py
index 7c48a35..903e77c 100644
--- a/gitlint/__init__.py
+++ b/gitlint/__init__.py
@@ -1 +1 @@
-__version__ = "0.16.0dev"
+__version__ = "0.15.1"