Skip to content

Commit 13d5afc

Browse files
committed
Merge pull request #11 from js-data/2.0
2.0
2 parents 3c36d98 + 3eae4e7 commit 13d5afc

17 files changed

+1006
-883
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
##### 2.0.0 - 02 July 2015
2+
3+
Stable Version 2.0.0
4+
5+
##### 2.0.0-rc.1 - 30 June 2015
6+
7+
Added `getEndpoint()`, which was removed from JSData
8+
9+
##### 2.0.0-beta.1 - 17 April 2015
10+
11+
Prepare for 2.0
12+
113
##### 1.2.3 - 07 March 2015
214

315
###### Other

Gruntfile.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@ module.exports = function (grunt) {
7171
commonjs: 'js-data',
7272
commonjs2: 'js-data',
7373
root: 'JSData'
74-
},
75-
'js-data-schema': {
76-
amd: 'js-data-schema',
77-
commonjs: 'js-data-schema',
78-
commonjs2: 'js-data-schema',
79-
root: 'Schemator'
8074
}
8175
},
8276
module: {
@@ -111,7 +105,8 @@ module.exports = function (grunt) {
111105
browsers: ['Chrome', 'Firefox', 'PhantomJS'],
112106
options: {
113107
files: [
114-
'bower_components/js-data/dist/js-data.min.js',
108+
'node_modules/es6-promise/dist/es6-promise.js',
109+
'node_modules/js-data/dist/js-data.js',
115110
'dist/js-data-http.min.js',
116111
'karma.start.js',
117112
'test/**/*.js'

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"karma.start.js"
3030
],
3131
"dependencies": {
32-
"js-data": ">=1.1.0"
32+
"js-data": ">=2.0.0"
3333
}
3434
}

0 commit comments

Comments
 (0)