Adding git commit message format enforcing
This commit is contained in:
parent
62703b9cca
commit
39caf5ec42
3 changed files with 17 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
<!--next-version-placeholder-->
|
||||
## v0.1.1 (2021-08-18)
|
||||
|
||||
|
||||
Full set of changes: [`v0.1.0...v0.1.1`](https://git.admin.franklin.edu/kellya/task-status/compare/v0.1.0...v0.1.1)
|
||||
|
||||
## v0.1.0 (2021-08-18)
|
||||
|
||||
|
|
13
poetry.lock
generated
13
poetry.lock
generated
|
@ -131,6 +131,14 @@ python-versions = "*"
|
|||
[package.dependencies]
|
||||
setuptools_scm = "*"
|
||||
|
||||
[[package]]
|
||||
name = "enforce-git-message"
|
||||
version = "1.0.1"
|
||||
description = "Enforces conventional git commit messages for git repositories"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">= 3.4"
|
||||
|
||||
[[package]]
|
||||
name = "flake8"
|
||||
version = "3.9.2"
|
||||
|
@ -607,7 +615,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes
|
|||
[metadata]
|
||||
lock-version = "1.1"
|
||||
python-versions = "^3.9"
|
||||
content-hash = "f59651c342f5cad09325a868e7b97d081920e19263e2e2cf29373703c6d4b2b5"
|
||||
content-hash = "d9b9c792a0b4bdf7a81f443da41010bdec5d444cccf11917481b09b53386dbf5"
|
||||
|
||||
[metadata.files]
|
||||
atomicwrites = [
|
||||
|
@ -712,6 +720,9 @@ docutils = [
|
|||
dotty-dict = [
|
||||
{file = "dotty_dict-1.3.0.tar.gz", hash = "sha256:eb0035a3629ecd84397a68f1f42f1e94abd1c34577a19cd3eacad331ee7cbaf0"},
|
||||
]
|
||||
enforce-git-message = [
|
||||
{file = "enforce-git-message-1.0.1.tar.gz", hash = "sha256:1fabdcf708c7e05bb7c1acdfd30eb518852be5ce16683a1962424cc565dcf960"},
|
||||
]
|
||||
flake8 = [
|
||||
{file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"},
|
||||
{file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"},
|
||||
|
|
|
@ -13,6 +13,7 @@ python-dateutil = "^2.8.2"
|
|||
pytest = "^6.2.4"
|
||||
flake8 = "^3.9.2"
|
||||
python-semantic-release = "^7.19.1"
|
||||
enforce-git-message = "^1.0.1"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
|
|
Loading…
Reference in a new issue