Skip to content

Commit fc46dba

Browse files
authored
Remove rc suffix from versions (#24190)
* Remove rc suffix from versions * Bump eslint-plugin-react-hooks version I noticed this one was behind the latest published version
1 parent fe6e074 commit fc46dba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ReactVersions.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@
1818
//
1919
// 0.0.0-experimental-241c4467e-20200129
2020

21-
const ReactVersion = '18.0.0-rc.3';
21+
const ReactVersion = '18.0.0';
2222

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

2727
const stablePackages = {
2828
'create-subscription': ReactVersion,
29-
'eslint-plugin-react-hooks': '4.2.1-rc.3',
30-
'jest-react': '0.12.1-rc.3',
29+
'eslint-plugin-react-hooks': '4.4.0',
30+
'jest-react': '0.12.1',
3131
react: ReactVersion,
3232
'react-art': ReactVersion,
3333
'react-dom': ReactVersion,
3434
'react-is': ReactVersion,
35-
'react-reconciler': '0.27.0-rc.3',
36-
'react-refresh': '0.11.0-rc.3',
35+
'react-reconciler': '0.27.0',
36+
'react-refresh': '0.11.0',
3737
'react-test-renderer': ReactVersion,
38-
'use-subscription': '1.6.0-rc.3',
39-
'use-sync-external-store': '1.0.0-rc.3',
40-
scheduler: '0.21.0-rc.3',
38+
'use-subscription': '1.6.0',
39+
'use-sync-external-store': '1.0.0',
40+
scheduler: '0.21.0',
4141
};
4242

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

0 commit comments

Comments
 (0)