Skip to content

Commit

Permalink
Bump beta -> rc
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Dec 8, 2021
1 parent 24dd07b commit 29d2bef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ workflows:
- setup
commit_sha: << pipeline.parameters.prerelease_commit_sha >>
release_channel: stable
dist_tag: "next,beta"
dist_tag: "next"
- publish_prerelease:
name: Publish to Experimental channel
requires:
Expand Down Expand Up @@ -512,7 +512,7 @@ workflows:
- setup
commit_sha: << pipeline.git.revision >>
release_channel: stable
dist_tag: "next,beta"
dist_tag: "next"
- publish_prerelease:
name: Publish to Experimental channel
requires:
Expand Down
18 changes: 9 additions & 9 deletions ReactVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,26 @@
//
// 0.0.0-experimental-241c4467e-20200129

const ReactVersion = '18.0.0';
const ReactVersion = '18.0.0-rc.0';

// The label used by the @next channel. Represents the upcoming release's
// stability. Could be "alpha", "beta", "rc", etc.
const nextChannelLabel = 'beta';
const nextChannelLabel = 'rc';

const stablePackages = {
'create-subscription': ReactVersion,
'eslint-plugin-react-hooks': '4.2.1',
'jest-react': '0.12.1',
'eslint-plugin-react-hooks': '4.2.1-rc.0',
'jest-react': '0.12.1-rc.0',
react: ReactVersion,
'react-art': ReactVersion,
'react-dom': ReactVersion,
'react-is': ReactVersion,
'react-reconciler': '0.27.0',
'react-refresh': '0.11.0',
'react-reconciler': '0.27.0-rc.0',
'react-refresh': '0.11.0-rc.0',
'react-test-renderer': ReactVersion,
'use-subscription': '1.6.0',
'use-sync-external-store': '1.0.0',
scheduler: '0.21.0',
'use-subscription': '1.6.0-rc.0',
'use-sync-external-store': '1.0.0-rc.0',
scheduler: '0.21.0-rc.0',
};

// These packages do not exist in the @next or @latest channel, only
Expand Down

0 comments on commit 29d2bef

Please sign in to comment.