Skip to content

Commit 38e5bb7

Browse files
committed
Remove "canary" from internal React version string
1 parent 6114128 commit 38e5bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ const getBuildInfo = async () => {
103103
join(cwd, 'packages', 'react', 'package.json')
104104
);
105105
const reactVersion = isExperimental
106-
? `${packageJSON.version}-experimental-canary-${commit}`
107-
: `${packageJSON.version}-canary-${commit}`;
106+
? `${packageJSON.version}-experimental-${commit}`
107+
: `${packageJSON.version}-${commit}`;
108108

109109
return {branch, buildNumber, checksum, commit, reactVersion, version};
110110
};

0 commit comments

Comments
 (0)