From 07cf86a5eef808e92a2667da65a41bb28989c3a7 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Wed, 25 Oct 2023 17:04:55 +0300 Subject: [PATCH] chore: revert changes for canary release (#5738) --- scripts/publish-canary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish-canary.ts b/scripts/publish-canary.ts index 611c25331e3e..82b27686e161 100644 --- a/scripts/publish-canary.ts +++ b/scripts/publish-canary.ts @@ -11,7 +11,7 @@ import {overwriteVersion} from './shared/overwrite-version'; const [major, minor, patch] = version.split(/[.-]/) as [string, string, string]; // construct new version from base version x.y.z to become x.y.z-{type}.{shortSha} - const newVersion = `${major}.${Number(minor) + 1}.${patch}-${type}.${commit}`; + const newVersion = `${major}.${minor}.${patch}-${type}.${commit}`; infoLog(`New dev version - ${newVersion}`);