diff options
author | Joris Roovers <joris.roovers@gmail.com> | 2021-11-28 12:52:17 +0100 |
---|---|---|
committer | Joris Roovers <joris.roovers@gmail.com> | 2021-11-28 12:52:17 +0100 |
commit | 4d96698f756df4f9f510de95099d987cd7182de2 (patch) | |
tree | 735464cc081879561927a37650b1102beaa1f4f9 | |
parent | 317776df3bb36d4ca6cdd00c15a031a2bd2983f1 (diff) |
0.17.0 releasev0.17.0
- Gitlint is now split in 2 packages: `gitlint` and `gitlint-core`.
This allows users to install gitlint without pinned dependencies
(which is the default).
- Under-the-hood: dependencies updated
Full Release details in CHANGELOG.md.
-rw-r--r-- | gitlint-core/gitlint/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gitlint-core/gitlint/__init__.py b/gitlint-core/gitlint/__init__.py index 26151b5..fd86b3e 100644 --- a/gitlint-core/gitlint/__init__.py +++ b/gitlint-core/gitlint/__init__.py @@ -1 +1 @@ -__version__ = "0.17.0dev" +__version__ = "0.17.0" @@ -23,7 +23,7 @@ Source code on `github.com/jorisroovers/gitlint`_. """ -version = "0.17.0dev" +version = "0.17.0" setup( name="gitlint", |