Skip to content

Commit e854ce3

Browse files
authored
Fix canary version strings (#31721)
We're still publishing RCs and creating canary version strings using the RC naming convention. Setting the `canaryChannelLabel` back to canary fixes the version names and tags after the 19 stable release.
1 parent c86542b commit e854ce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ReactVersions.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ const ReactVersion = '19.1.0';
2626
//
2727
// It only affects the label used in the version string. To customize the
2828
// npm dist tags used during publish, refer to .github/workflows/runtime_prereleases_*.yml.
29-
const canaryChannelLabel = 'rc';
29+
const canaryChannelLabel = 'canary';
3030

3131
// If the canaryChannelLabel is "rc", the build pipeline will use this to build
3232
// an RC version of the packages.
33-
const rcNumber = 1;
33+
const rcNumber = 0;
3434

3535
const stablePackages = {
3636
'eslint-plugin-react-hooks': '5.2.0',

0 commit comments

Comments
 (0)