Edited wiki page ReleaseProcess through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
index 9c7e9d9..2079834 100644
--- a/ReleaseProcess.wiki
+++ b/ReleaseProcess.wiki
@@ -12,16 +12,6 @@
 <wiki:toc max_depth="3" />
 
 
-=== Tag version ===
-{{{
-VERSION=0.90
-
-cd pre-existing-plexi/
-git checkout origin/master # the commit we are going to tag
-git tag -a v$VERSION -m "Version $VERSION"
-git push --tags
-}}}
-
 === Create release branch ===
 {{{
 BRANCH=v4.0.x
@@ -42,6 +32,16 @@
 git branch $BRANCH origin/$BRANCH
 }}}
 
+=== Tag version ===
+{{{
+VERSION=0.90
+
+cd pre-existing-plexi/
+git checkout origin/master # the commit we are going to tag
+git tag -a v$VERSION -m "Version $VERSION"
+git push --tags
+}}}
+
 === Build RC of library ===
 {{{
 cd ~