From 76a2108eed012c6fda1a8a31c0d84c7e56350cd4 Mon Sep 17 00:00:00 2001 From: James Baxley Date: Mon, 5 Sep 2016 20:17:55 -0400 Subject: [PATCH] updated changelog and version bump --- Changelog.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 667d27d919..ed284e71e6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,16 @@ Expect active development and potentially significant breaking changes in the `0 ### v0.5.0 +#### Breaking +```js +// old +renderToStringWithData(component).then(markup) // markup had a script tag + +// new + +renderToStringWithData(component).then({ markup, initialState }) // markup has not tag, and state is passed +``` + - Feature: Removed client as a prop and fixed warnings when not using ApolloProvider [#189](https://github.com/apollostack/react-apollo/pull/189) - Feature: Added updateQuery to data props diff --git a/package.json b/package.json index 5a480af236..c25733dea0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-apollo", - "version": "0.4.7", + "version": "0.5.0", "description": "React data container for Apollo Client", "main": "index.js", "scripts": {