diff --git a/justfile b/justfile
index f4bb303a25660b4b71aee66b5b97d497488f14b5..3858bd5d9525dc67fe371ee264fac1daafa7fd6d 100644
--- a/justfile
+++ b/justfile
@@ -9,8 +9,8 @@ update:
 build:
     @poetry build
 
-publish:
-    @poetry publish --build
+publish: build
+    @poetry publish
 
 requirements:
     @poetry export --without-hashes -f requirements.txt > requirements.txt --without-hashes
diff --git a/pyproject.toml b/pyproject.toml
index 5fc080f98ccba4e4cdd4e37b23d7aa17037941e9..457dade6a4b57eabf7eeab005b2e63f9e47d2518 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "mitm-tooling"
-version = "0.3.2"
+version = "0.3.3"
 description = ""
 authors = ["Leah Tacke genannt Unterberg <leah.tgu@pads.rwth-aachen.de>"]
 readme = "README.md"