diff --git a/tools/update-version.js b/tools/update-version.js
index 0d46973213c50a56dc6f8db4bbe24e37adfac91d..a7d5ae1e69e99810bba3f04349d182466465bb42 100755
--- a/tools/update-version.js
+++ b/tools/update-version.js
@@ -25,10 +25,10 @@ module.exports = () => {
       const mm = leftPad(today.getMonth() + 1, 2, '0')
       const d = today.getDate()
       if (attempt === 0) {
-        return `0.${yy}${mm}.${d}-beta`
+        return `1.${yy}${mm}.${d}`
       } else {
         const letter = String.fromCharCode(96 + attempt) // 0=a, 1=b, 2=c, ...
-        return `0.${yy}${mm}.${d}-beta.${letter}`
+        return `1.${yy}${mm}.${d}.${letter}`
       }
     }