Skip to content

Commit

Permalink
Fix canary version strings (#31721)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jackpope authored Dec 12, 2024
1 parent c86542b commit e854ce3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReactVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ const ReactVersion = '19.1.0';
//
// It only affects the label used in the version string. To customize the
// npm dist tags used during publish, refer to .github/workflows/runtime_prereleases_*.yml.
const canaryChannelLabel = 'rc';
const canaryChannelLabel = 'canary';

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

const stablePackages = {
'eslint-plugin-react-hooks': '5.2.0',
Expand Down

0 comments on commit e854ce3

Please sign in to comment.