Skip to content

Commit

Permalink
chore: revert changes for canary release (#5738)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Oct 25, 2023
1 parent 2e121b3 commit 07cf86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish-canary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);

Expand Down

0 comments on commit 07cf86a

Please sign in to comment.