mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
2cfb4741fd
We're going to use this branch to release a minor 18.3 release based off the published 18.2 release revision. This will include some additional warnings to assist in upgrading to React 19, but no behavior changes compared to 18.2. I bumped the React version to 18.3 and all the other packages by a patch revision (since we're not going to update anything in those).
17 lines
745 B
JavaScript
17 lines
745 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// TODO: this is special because it gets imported during build.
|
|
//
|
|
// TODO: 18.0.0 has not been released to NPM;
|
|
// It exists as a placeholder so that DevTools can support work tag changes between releases.
|
|
// When we next publish a release, update the matching TODO in backend/renderer.js
|
|
// TODO: This module is used both by the release scripts and to expose a version
|
|
// at runtime. We should instead inject the version number as part of the build
|
|
// process, and use the ReactVersions.js module as the single source of truth.
|
|
export default '18.3.0';
|