diff --git a/mage_helpers/git.go b/mage_helpers/git.go
index b32230733393e23c72a06ab9ac1c8beedfd3dfd7..d43f7d907d085c6776f4a1c4fa2bfecc09b9a445 100644
--- a/mage_helpers/git.go
+++ b/mage_helpers/git.go
@@ -52,8 +52,10 @@ func CreateReleaseTag() {
 	if err != nil {
 		fmt.Println(err)
 	}
+	fmt.Println(previousVersion)
 
 	newVersion := previousVersion.IncMinor()
+	fmt.Println(newVersion)
 
 	// Create git tag
 	newTagName := newVersion.Original()
@@ -93,6 +95,6 @@ func GetLatestGitTag() string {
 	}
 	tag := string(output)
 	tag = strings.TrimSuffix(tag, "\n")
-
+	fmt.Println(tag)
 	return tag
 }