diff --git a/README.md b/README.md
index 088ea17437cd0fb13c2011680c132087d4e33707..b04f741ffe4a6c5677471700a4c2d8e076b1ba67 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# mitm-support
+# mitm-tooling
 
 This python package contains basic functionality to work with "Models-in-the-Middle" (MitM) data sets.
 It bundles a generic mechanism to load and export relational data as a configurable MitM.
\ No newline at end of file
diff --git a/justfile b/justfile
index b39ef285316abbf6240f7b0b2d0e53aae589e91b..44800d9551d9b9c2cc2ef958be34e5690e3d1f35 100644
--- a/justfile
+++ b/justfile
@@ -9,10 +9,10 @@ update:
 build:
     @poetry build
 
-release:
+publish:
     @poetry publish --build
 
 requirements:
-    @poetry export --without-hashes -f requirements.txt > requirements.txt
+    @poetry export --without-hashes -f requirements.txt > requirements.txt --without-hashes
 
 preflight: lock requirements build