Skip to content

Commit

Permalink
Prepare for 3.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Aug 11, 2016
1 parent a4ab9bc commit f7a3ef7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
##### 3.0.0-rc.1 - 10 August 2016

###### Breaking changes
- Now depending on js-data 3.0.0-rc.4 or greater

###### Backwards compatible changes
- Upgraded dependencies

##### 3.0.0-beta.8 - 08 July 2016

###### Backwards compatible changes
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
pre:
- npm i -g npm
- npm i -g codecov
- npm i js-data@beta
- npm i js-data@rc
test:
post:
- cat ./coverage/lcov.info | codecov
Expand Down
6 changes: 3 additions & 3 deletions fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-fetch",
"description": "HTTP adapter for js-data that uses the fetch API.",
"version": "3.0.0-beta.8",
"version": "3.0.0-rc.1",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand All @@ -22,9 +22,9 @@
"fetch"
],
"dependencies": {
"js-data-adapter": "~0.7.4"
"js-data-adapter": "~0.8.0"
},
"peerDependencies": {
"js-data": "^3.0.0-beta.10"
"js-data": "^3.0.0-rc.4"
}
}
8 changes: 4 additions & 4 deletions node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-http-node",
"description": "Node.js HTTP adapter for js-data.",
"version": "3.0.0-beta.8",
"version": "3.0.0-rc.1",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand All @@ -22,10 +22,10 @@
"node.js"
],
"dependencies": {
"js-data-adapter": "~0.7.4"
"js-data-adapter": "~0.8.0"
},
"peerDependencies": {
"axios": "^0.12.0",
"js-data": "^3.0.0-beta.10"
"axios": "^0.13.1",
"js-data": "^3.0.0-rc.4"
}
}
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-http",
"description": "HTTP (XHR) adapter for js-data in the browser.",
"version": "3.0.0-beta.8",
"version": "3.0.0-rc.1",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand Down Expand Up @@ -74,26 +74,26 @@
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors"
},
"dependencies": {
"js-data-adapter": "0.7.4"
"js-data-adapter": "~0.8.0"
},
"peerDependencies": {
"js-data": "^3.0.0-beta.10"
"js-data": "^3.0.0-rc.4"
},
"devDependencies": {
"axios": "0.12.0",
"babel-plugin-syntax-async-functions": "6.8.0",
"babel-plugin-transform-regenerator": "6.9.0",
"axios": "0.13.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-regenerator": "6.11.4",
"babel-preset-stage-0": "6.5.0",
"istanbul": "0.4.4",
"js-data-repo-tools": "0.5.5",
"karma": "1.1.1",
"js-data-repo-tools": "0.5.6",
"karma": "1.1.2",
"karma-browserstack-launcher": "1.0.1",
"karma-chai": "0.1.0",
"karma-mocha": "1.1.1",
"karma-phantomjs-launcher": "1.0.1",
"karma-sinon": "1.0.5",
"phantomjs-prebuilt": "2.1.7",
"rollup-plugin-commonjs": "3.1.0",
"phantomjs-prebuilt": "2.1.11",
"rollup-plugin-commonjs": "3.3.1",
"rollup-plugin-replace": "1.1.1",
"uglify-js": "2.7.0"
}
Expand Down

0 comments on commit f7a3ef7

Please sign in to comment.