From 8023d0f79f5e85725960a0eb512eb0e90a2b1df4 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Wed, 11 Jan 2023 15:30:23 +0200 Subject: [PATCH] fix typo Signed-off-by: Jari Kolehmainen --- packages/release-tool/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/release-tool/src/index.ts b/packages/release-tool/src/index.ts index 4e1db079e7..0edb6c0c60 100755 --- a/packages/release-tool/src/index.ts +++ b/packages/release-tool/src/index.ts @@ -92,7 +92,7 @@ const newVersion = currentVersion.inc(options.type, options.preid); const newVersionMilestone = `${newVersion.major}.${newVersion.minor}.${newVersion.patch}`; const prBranch = `release/v${newVersion.format()}`; -await exec(`yarn version ${newVersion.format()}`); +await exec(`yarn run bump-version --yes ${newVersion.format()}`); await exec(`git checkout -b ${prBranch}`); await exec("git add lerna.json packages/*/package.json"); await exec(`git commit -sm "Release ${newVersion.format()}"`);