Skip to content

Commit

Permalink
Hello 15.6 Release Candidate (#9828)
Browse files Browse the repository at this point in the history
* Hello 15.6 Release Candidate

**what is the change?:**
We update the versions of all associated React packages when bumping the
version of React.

**why make this change?:**
We want to publish a RC to give folks time to try out the latest version
before it's final.

Why bump the version of every other associated package?

It makes the dependency between them more clear.

There will be cases where we make a fix in React-DOM and it requires
changes in React core. In that case, it will be more clear to people
when we update the versions of both and they remain in sync.

**test plan:**
Visual inspection

**issue:**
#9398

* Update a couple more packages versions

**what is the change?:**
Updates version for 'react-dom-factories' package and 'react-addons'
template.

**why make this change?:**
We missed these in the previous commit, which was copying the approach
from https://github.com/facebook/react/pull/9828/files

**test plan:**
Visual inspection, and running the build

**issue:**
#9398
  • Loading branch information
flarnie committed Jun 1, 2017
1 parent 78fc25f commit fe031ca
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-build",
"private": true,
"version": "15.5.4",
"version": "15.6.0-rc.1",
"devDependencies": {
"aliasify": "^2.0.0",
"art": "^0.10.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-addons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-addons-template",
"version": "15.5.4",
"version": "15.6.0-rc.1",
"main": "index.js",
"repository": "facebook/react",
"keywords": [
Expand All @@ -13,7 +13,7 @@
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^15.5.4"
"react": "^15.6.0-rc.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-dom-factories/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-dom-factories",
"version": "1.0-alpha",
"version": "15.6.0-rc",
"description": "React package for DOM factory methods.",
"main": "index.js",
"repository": "facebook/react",
Expand All @@ -13,7 +13,7 @@
},
"homepage": "https://facebook.github.io/react/",
"peerDependencies": {
"react": "^15.5.4"
"react": "^15.6.0-rc.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-dom",
"version": "15.5.4",
"version": "15.6.0-rc.1",
"description": "React package for working with the DOM.",
"main": "index.js",
"repository": "facebook/react",
Expand All @@ -19,7 +19,7 @@
"prop-types": "~15.5.7"
},
"peerDependencies": {
"react": "^15.5.4"
"react": "^15.6.0-rc.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-renderer",
"version": "15.5.4",
"version": "15.6.0-rc.1",
"description": "React package for use inside react-native.",
"main": "index.js",
"repository": "facebook/react",
Expand All @@ -18,7 +18,7 @@
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^15.5.4"
"react": "^15.6.0-rc.1"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-test-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-test-renderer",
"version": "15.5.4",
"version": "15.6.0-rc.1",
"description": "React package for snapshot testing.",
"main": "index.js",
"repository": "facebook/react",
Expand All @@ -19,7 +19,7 @@
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^15.5.4"
"react": "^15.6.0-rc.1"
},
"files": [
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react",
"description": "React is a JavaScript library for building user interfaces.",
"version": "15.5.4",
"version": "15.6.0-rc.1",
"keywords": [
"react"
],
Expand Down
2 changes: 1 addition & 1 deletion src/ReactVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@

'use strict';

module.exports = '15.5.4';
module.exports = '15.6.0-rc.1';

0 comments on commit fe031ca

Please sign in to comment.