From af4aaf4b83563e65e6e80b5ea2a7bcdb01cf1469 Mon Sep 17 00:00:00 2001 From: James Baxley Date: Thu, 8 Dec 2016 20:15:09 -0500 Subject: [PATCH] update build script (#366) --- .npmignore | 1 - .travis.yml | 8 -------- Changelog.md | 4 +--- package.json | 2 +- 4 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.npmignore b/.npmignore index a046cf3d8e..0444cf0e43 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,4 @@ example -lib src test .vscode diff --git a/.travis.yml b/.travis.yml index b4d654917a..164c213411 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,14 +28,6 @@ script: # Allow Travis tests to run in containers. sudo: false -# When Travis CI publishes to NPM, the published files are available in the root -# directory, which allows for a clean include or require of sub-modules. -# -# var language = require('react-apollo/connect'); -# -after_success: - - cd ./lib/src/ && cp -vr ./ ../../ && cd ../../ && ls - deploy: provider: npm email: james.baxley@newspring.cc diff --git a/Changelog.md b/Changelog.md index 6d8c357b38..117f3e9efe 100644 --- a/Changelog.md +++ b/Changelog.md @@ -14,11 +14,9 @@ import { getDataFromTree, renderToStringWithData } from 'react-apollo' ``` - Feature: Better packaging [PR #306](https://github.com/apollostack/react-apollo/pull/306) - - Feature: Add networkStatus prop to connected components[Issue #322](https://github.com/apollostack/react-apollo/issues/322) - - Feature: Pass component display name as watchQuery metadata for experimental devtools [PR #363](https://github.com/apollostack/react-apollo/pull/363) - +- Feature: Removed use of `createFragment` and bumped AC version [PR #357](https://github.com/apollostack/react-apollo/pull/357) - Bug: fix issue with Redux's `connect` and SSR - [Issue #350](https://github.com/apollostack/react-apollo/issues/350) ### v0.6.0 diff --git a/package.json b/package.json index 4f966ddd49..374a31df71 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-apollo", - "version": "0.6.0", + "version": "0.7.0", "description": "React data container for Apollo Client", "main": "lib/index.js", "browser": "lib/browser.js",