summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <joris.roovers@gmail.com>2021-10-08 19:10:27 +0200
committerJoris Roovers <joris.roovers@gmail.com>2021-10-08 19:10:27 +0200
commit0be7cbe5bcdea69f71060f8e903ea9d6e5cb6947 (patch)
tree11d64ff26fb53c3c01ee35d062ca0c51fb883550
parent5e0d604c730a7a20d73a559201d3f76826bd1026 (diff)
0.16.0 releasev0.16.0
- Python 3.10 support - New Rule: ignore-by-author-name allows users to skip linting commit messages made by specific authors - --commit <SHA> flag to more easily lint a single commit message (#141) - --fail-without-commits flag will force gitlint to fail (exit code 253) when the target commit range is empty (typically when using --commits) (#193) - Bugfixes: - contrib-title-conventional-commits (CT1) now properly enforces the commit type (#185) - contrib-title-conventional-commits (CT1) now supports the BREAKING CHANGE symbol "!" (#186) - Under-the-hood: dependencies updated, test and github action improvements. Full Release details in CHANGELOG.md.
-rw-r--r--CHANGELOG.md2
-rw-r--r--gitlint/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 96355e8..dd224e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog #
-## v0.16.0 (2021-10-?) Soon! ##
+## v0.16.0 (2021-10-08) ##
Contributors:
Special thanks to all contributors for this release, in particular [sigmavirus24](https://github.com/sigmavirus24), [l0b0](https://github.com/l0b0) and [rafaelbubach](https://github.com/rafaelbubach).
diff --git a/gitlint/__init__.py b/gitlint/__init__.py
index 7c48a35..5a313cc 100644
--- a/gitlint/__init__.py
+++ b/gitlint/__init__.py
@@ -1 +1 @@
-__version__ = "0.16.0dev"
+__version__ = "0.16.0"