Skip to content

Commit

Permalink
Stable Version 2.3.0.
Browse files Browse the repository at this point in the history
Merged #328
  • Loading branch information
jmdobry committed Apr 15, 2015
1 parent 8a678e6 commit 7131efe
Show file tree
Hide file tree
Showing 10 changed files with 305 additions and 267 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
##### 2.3.0 - 15 April 2015

###### Backwards compatible API changes
- #328 - Add support for `js-data-sql` adapter

###### Backwards compatible bug fixes
- #328 - Fixed adapter registration

##### 2.2.3 - 08 March 2015

###### Other
Expand Down
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ module.exports = function (grunt) {
},
module: {
loaders: [
{ test: /(src)(.+)\.js$/, exclude: /node_modules/, loader: 'babel-loader?blacklist=useStrict' }
{ test: /(.+)\.js$/, exclude: /node_modules/, loader: 'babel-loader?blacklist=useStrict' }
],
preLoaders: [
{
test: /(src)(.+)\.js$|(test)(.+)\.js$/, // include .js files
test: /(.+)\.js$/, // include .js files
exclude: /node_modules/, // exclude any and all files in the node_modules folder
loader: "jshint-loader?failOnHint=true"
}
Expand Down
7 changes: 5 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"angular-mocks-1.3.2": "angular-mocks#1.3.2"
},
"dependencies": {
"js-data": ">=1.1.0",
"angular": ">=1.0.3"
"js-data": ">=1.5.7",
"angular": ">=1.1.0"
},
"resolutions": {
"angular": "1.3.2"
}
}
4 changes: 4 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
general:
branches:
ignore:
- gh-pages # list of branches to ignore
dependencies:
pre:
- bower install
Expand Down
Loading

0 comments on commit 7131efe

Please sign in to comment.