Skip to content

Commit

Permalink
Stable Version 1.0.0-alpha.5-6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Dec 3, 2014
1 parent 16c99da commit 7eace1d
Show file tree
Hide file tree
Showing 21 changed files with 764 additions and 927 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
##### 1.0.0-alpha.5-6 - 03 December 2014

###### Backwards compatible bug fixes
- Backport jmdobry/angular-data#262

###### Other
- Optimized utility functions to save several kilobytes off of minified file
- Change detection of nested properties "should" work now

##### 1.0.0-alpha.5-5 - 30 November 2014

###### Breaking API changes
Expand Down
12 changes: 6 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ module.exports = function (grunt) {
}
},
browserify: {
options: {
browserifyOptions: {
standalone: 'JSData'
},
external: ['js-data-schema', 'bluebird']
},
dist: {
options: {
browserifyOptions: {
standalone: 'JSData'
},
external: ['js-data-schema', 'bluebird']
},
files: {
'dist/js-data.js': ['src/index.js']
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Unlike Backbone and Ember Models, js-data does not require the use of getters an

Supporting relations, computed properties, model lifecycle control and a slew of other features, js-data is the tool for giving your data the respect it deserves.

__Latest Release:__ [1.0.0-alpha.5-5](https://github.com/js-data/js-data/releases/tag/1.0.0-alpha.5-5)
__Latest Release:__ [1.0.0-alpha.5-6](https://github.com/js-data/js-data/releases/tag/1.0.0-alpha.5-6)

js-data is pre-release. The API is subject to change, though the current api is well tested.

Expand Down
3 changes: 1 addition & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "js-data",
"description": "Robust, framework-agnostic in-memory data store.",
"version": "1.0.0-alpha.5-5",
"homepage": "http://www.js-data.io",
"repository": {
"type": "git",
Expand All @@ -12,7 +11,7 @@
"url": "http://www.pseudobry.com",
"email": "jason.dobry@gmail.com"
},
"main": "./dist/js-data.min.js",
"main": "./dist/js-data.js",
"ignore": [
".idea/",
".*",
Expand Down
Loading

0 comments on commit 7eace1d

Please sign in to comment.