diff --git a/CHANGELOG.md b/CHANGELOG.md
index ae8ea97f284d3a8842f73727426781f78e6a36c8..bcc8d762f0b75f146194143b8eec4337be068823 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,7 @@
 v 0.6.2
-- Fix PowerShell
+- Fix PowerShell support
+- Make more descriptive pulling message
+- Add version check to Makefile
 
 v 0.6.1
 - Revert: Fix tags handling when using git fetch: fetch all tags and prune the old ones
diff --git a/Makefile b/Makefile
index 131962a3ffb882e9d20d6124214ef8622c0256f0..1e0742dea028209406b894c7e3d565b7ecdcfd8f 100644
--- a/Makefile
+++ b/Makefile
@@ -34,9 +34,9 @@ help:
 
 check:
 ifeq ($(RELEASE),true)
-	ifneq ($VERSION,$LAST_TAG)
-		$(error Bad version specified in VERSION file)
-	endif
+ifneq (v$(VERSION),$(LAST_TAG))
+	$(error Bad version specified in VERSION file: v$(VERSION) instead of $(LAST_TAG))
+endif
 endif
 
 version: FORCE
diff --git a/VERSION b/VERSION
index 844f6a91acb92e5f4c58fe0d440fba8deea2a8c8..b6160487433ba524a39a93cde5a330f7e71d0d39 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.6.3
+0.6.2