Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
Reviewed By: alunyov

Differential Revision: D13827853

fbshipit-source-id: 5fd3808aefcd5686a1c4d160ea5d23f9b022c07e
  • Loading branch information
Juan Tejada authored and facebook-github-bot committed Jan 26, 2019
1 parent a6fb082 commit ebd97cc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relay",
"description": "A framework for building data-driven React applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"license": "MIT",
"homepage": "https://facebook.github.io/relay/",
"bugs": "https://github.com/facebook/relay/issues",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-relay/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "babel-plugin-relay",
"description": "A Babel Plugin for use with Relay applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"keywords": [
"graphql",
"relay",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-relay/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-relay",
"description": "A framework for building GraphQL-driven React applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"keywords": [
"graphql",
"relay",
Expand All @@ -16,7 +16,7 @@
"fbjs": "^1.0.0",
"nullthrows": "^1.1.0",
"prop-types": "^15.5.8",
"relay-runtime": "2.0.0-rc.2"
"relay-runtime": "2.0.0"
},
"peerDependencies": {
"react": "^16.5.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/relay-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relay-compiler",
"description": "A compiler tool for building GraphQL-driven applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"keywords": [
"graphql",
"relay"
Expand All @@ -28,7 +28,7 @@
"fbjs": "^1.0.0",
"immutable": "~3.7.6",
"nullthrows": "^1.1.0",
"relay-runtime": "2.0.0-rc.2",
"relay-runtime": "2.0.0",
"signedsource": "^1.0.0",
"yargs": "^9.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/relay-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relay-runtime",
"description": "A core runtime for building GraphQL-driven applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"keywords": [
"graphql",
"relay"
Expand Down
6 changes: 3 additions & 3 deletions packages/relay-test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relay-test-utils",
"description": "Utilities for testing Relay applications.",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"keywords": [
"graphql",
"relay"
Expand All @@ -15,8 +15,8 @@
"fbjs": "^1.0.0",
"iterall": "^1.2.1",
"prop-types": "^15.5.8",
"relay-compiler": "2.0.0-rc.2",
"relay-runtime": "2.0.0-rc.2"
"relay-compiler": "2.0.0",
"relay-runtime": "2.0.0"
},
"peerDependencies": {
"graphql": "^14.1.0"
Expand Down

2 comments on commit ebd97cc

@TrySound
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jstejada Can this mention be removed from changelog?

Although not officially supported, this change also breaks SSR with Relay: #2544. We will fix this issue in 2.0.0-rc.2.

@jstejada
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for catching this @TrySound, I updated it

Please sign in to comment.