Skip to content

feature-bind #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 15, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

##### 0.8.1 - 02 May 2014

Expand Down
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ module.exports = function (grunt) {
options: {
alias: [
'lib/observe-js/observe-js.js:observejs',
'src/errors/index.js:errors',
'src/utils/index.js:utils'
'src/errors.js:errors',
'src/utils.js:utils'
],
// TODO: There's got to be a better way to consume observe-js without it polluting the global space
postBundleCB: function (err, src, next) {
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__Data store for Angular.js.__

__Current version:__ 0.8.0
__Current version:__ 0.9.0

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

Expand All @@ -13,7 +13,6 @@ Pending:
- Relations/Associations
- Various Adapters
- Schema Definition/Validation
- Cache Expiry
- Nested Resources
- Website / documentation
- 100% tested (whatever _that_ means)
Expand Down
Loading