diff --git a/.gitignore b/.gitignore
index 3c4dd4c9f24dd9353e2835913852d752b621a5f7..b99139dcfcfbc2e619b256f64641e402c7f1a14c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,9 @@
 # requirements.txt is generated dynamically in this project (e.g. make requirements)
 requirements.txt
 
+# junit reports (generated by tox)
+report/
+
 # Byte-compiled / optimized / DLL files
 __pycache__/
 *.py[cod]
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 11cc3049ed15c86b247275f4d2a96fd5590b7070..96313f348eb94e19ad1521760ac99977e0482835 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -2,9 +2,10 @@ default_language_version:
     python: python3
 repos:
 -   repo: https://github.com/ambv/black
-    rev: 21.6b0
+    rev: 22.3.0
     hooks:
     - id: black
+      language_version: python3.9
 -   repo: https://gitlab.com/pycqa/flake8
     rev: 3.9.2
     hooks:
diff --git a/LICENSE.rst b/LICENSE.rst
index 5f8b4edff863e691e6c40ffb30facb001bb4d7ea..65acff406d68f658e56df3ee039b1d7c96403cf2 100644
--- a/LICENSE.rst
+++ b/LICENSE.rst
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2021, Daniel Böckenhoff
+Copyright (c) 2022, Daniel Böckenhoff
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/Makefile b/Makefile
index 57ad3e7cabe0ce840994fe4c9e0002c509f3adfe..88b74aa9e682a2e35f8d0e1d42b27203d27599a7 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,7 @@ clean:
 	rm -rf docs/_build
 	rm -rf docs/source
 	rm -rf dist
+	rm -rf build
 	rm -rf report
 	rm -rf .tox
 	rm -rf .pytest_cache
diff --git a/docs/cookiecutter_input.json b/docs/cookiecutter_input.json
index c28c84939f530808036d925f4be6923267446a21..539ee6e426ba12a983e41954677ec43c156596ef 100644
--- a/docs/cookiecutter_input.json
+++ b/docs/cookiecutter_input.json
@@ -1,4 +1,5 @@
 {
+    "_output_dir": "/mnt/data/git/tfields/.git/cookiecutter",
     "_template": "https://gitlab.com/dboe/dough.git",
     "author": "Daniel B\u00f6ckenhoff",
     "continuous_integration": "y",
diff --git a/setup.cfg b/setup.cfg
index 0dfa80030b7b5b906f60fd97e5c6bf327c3cb5dc..be477f5500741f3e2d6eba8d1593478698f02dc9 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -68,10 +68,10 @@ all =
 	%(dev)s
 dev = 
 	%(docs)s
-	%(test)s
+    %(test)s
 	%(io)s
-	bump2version  # for incrementing the version
-	twine  # for publishing
+	bump2version==1.0.0  # for incrementing the version
+    twine  # for publishing
 	sphinx  # for documentation
 	pre-commit  # https://pre-commit.com/ for hook managment
 	pre-commit-hooks