Skip to content

Commit 5648638

Browse files
committed
Merge pull request #53 from jmdobry/feature-bind
feature-bind
2 parents f8de45d + 6bd3d3d commit 5648638

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+571
-76
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
###### Backwards compatible API changes
44
- #30, #48 - DSCacheFactory integration
5+
- #49 - DS.bindOne($scope, prop, resourceName, id)
6+
- #50 - DS.bindAll($scope, prop, resourceName, query)
57

68
##### 0.8.1 - 02 May 2014
79

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ module.exports = function (grunt) {
7676
options: {
7777
alias: [
7878
'lib/observe-js/observe-js.js:observejs',
79-
'src/errors/index.js:errors',
80-
'src/utils/index.js:utils'
79+
'src/errors.js:errors',
80+
'src/utils.js:utils'
8181
],
8282
// TODO: There's got to be a better way to consume observe-js without it polluting the global space
8383
postBundleCB: function (err, src, next) {

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__Data store for Angular.js.__
44

5-
__Current version:__ 0.8.0
5+
__Current version:__ 0.9.0
66

77
Angular-data is in a pre-1.0.0 development stage; the API is fluctuating, not a lot of tests yet, etc.
88

@@ -13,7 +13,6 @@ Pending:
1313
- Relations/Associations
1414
- Various Adapters
1515
- Schema Definition/Validation
16-
- Cache Expiry
1716
- Nested Resources
1817
- Website / documentation
1918
- 100% tested (whatever _that_ means)

0 commit comments

Comments
 (0)