Skip to content

Commit

Permalink
Stable Version 1.0.0-rc.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Sep 3, 2014
1 parent 1793a7d commit 66a836a
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
##### 1.0.0-beta.4 - 02 September 2014
##### 1.0.0-rc.1 - 03 September 2014

###### Backwards compatible API changes
- #142 - Update references on eject (Added `DS.unlinkInverse`)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Unlike Backbone and Ember Models, angular-data does not require the use of gette

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

__Latest Release:__ [1.0.0-beta.3](http://angular-data.pseudobry.com/)
__master:__ [1.0.0-beta.4](http://angular-data-next.pseudobry.com/)
__Latest Release:__ [1.0.0-rc.1](http://angular-data.pseudobry.com/)
__master:__ [1.0.0-rc.1](http://angular-data-next.pseudobry.com/)

Angular-data is in a 1.0.0 Beta. The API is rather stable and angular-data is well tested.

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Jason Dobry",
"name": "angular-data",
"description": "Data store for Angular.js.",
"version": "1.0.0-beta.4",
"version": "1.0.0-rc.1",
"homepage": "http://angular-data.pseudobry.com/",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
"angular-mocks": "~1.2.22",
"angular-cache": "~3.1.1",
"observe-js": "0.3.4",
"angular-data-mocks": "~0.6.0",
"angular-data-mocks": "1.0.0-rc.1",
"bootstrap": "~3.2.0"
}
}
14 changes: 7 additions & 7 deletions dist/angular-data.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* @author Jason Dobry <jason.dobry@gmail.com>
* @file angular-data.js
* @version 1.0.0-beta.4 - Homepage <http://angular-data.pseudobry.com/>
* @version 1.0.0-rc.1 - Homepage <http://angular-data.pseudobry.com/>
* @copyright (c) 2014 Jason Dobry <https://github.com/jmdobry/>
* @license MIT <https://github.com/jmdobry/angular-data/blob/master/LICENSE>
*
* @overview Data store for Angular.js.
*/
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
// Copyright 2012 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -924,18 +924,18 @@ var isArray = require('./isArray');
function isEmpty(val){
if (val == null) {
// typeof null == 'object' so we check it first
return false;
return true;
} else if ( typeof val === 'string' || isArray(val) ) {
return !val.length;
} else if ( typeof val === 'object' || typeof val === 'function' ) {
} else if ( typeof val === 'object' ) {
var result = true;
forOwn(val, function(){
result = false;
return false; // break loop
});
return result;
} else {
return false;
return true;
}
}

Expand Down Expand Up @@ -6654,7 +6654,7 @@ module.exports = [function () {
* @id angular-data
* @name angular-data
* @description
* __Version:__ 1.0.0-beta.4
* __Version:__ 1.0.0-rc.1
*
* ## Install
*
Expand Down Expand Up @@ -6818,4 +6818,4 @@ module.exports = [function () {
};
}];

},{"mout/array/contains":2,"mout/array/filter":3,"mout/array/slice":7,"mout/array/sort":8,"mout/array/toLookup":9,"mout/lang/isBoolean":14,"mout/lang/isEmpty":15,"mout/object/deepMixIn":22,"mout/object/forOwn":24,"mout/object/pick":27,"mout/object/set":28,"mout/string/makePath":31,"mout/string/pascalCase":32,"mout/string/upperCase":35}]},{},[72]);
},{"mout/array/contains":2,"mout/array/filter":3,"mout/array/slice":7,"mout/array/sort":8,"mout/array/toLookup":9,"mout/lang/isBoolean":14,"mout/lang/isEmpty":15,"mout/object/deepMixIn":22,"mout/object/forOwn":24,"mout/object/pick":27,"mout/object/set":28,"mout/string/makePath":31,"mout/string/pascalCase":32,"mout/string/upperCase":35}]},{},[72]);
4 changes: 2 additions & 2 deletions dist/angular-data.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions guide/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<i class="icon-wrench icon-white"></i> API <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li class="nav-header">Angular-data - 1.0.0-beta.4</li>
<li class="nav-header">Angular-data - 1.0.0-rc.1</li>
<li>
<a href="/documentation/api/angular-data/angular-data">Overview</a>
</li>
Expand All @@ -96,7 +96,7 @@
<a href="/documentation/api/angular-data/DSLocalStorageAdapter">DSLocalStorageAdapter</a>
</li>
<li class="divider"></li>
<li class="nav-header">Angular-data-mocks - 0.6.0</li>
<li class="nav-header">Angular-data-mocks - 1.0.0-rc.1</li>
<li>
<a href="/documentation/api/angular-data-mocks/angular-data-mocks">Overview</a>
</li>
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-data",
"description": "Data store for Angular.js.",
"version": "1.0.0-beta.4",
"version": "1.0.0-rc.1",
"homepage": "http://angular-data.pseudobry.com",
"repository": {
"type": "git",
Expand All @@ -20,7 +20,7 @@
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^2.1.4",
"grunt-browserify": "^3.0.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.5.0",
Expand All @@ -29,7 +29,7 @@
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.8.3",
"grunt-karma-coveralls": "^2.5.1",
"karma": "^0.12.22",
"karma": "^0.12.23",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "^0.2.6",
Expand All @@ -47,7 +47,6 @@
"test": "grunt test"
},
"dependencies": {
"observe-js": "^0.1.0",
"mout": "^0.9.1"
"mout": "^0.10.0"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @id angular-data
* @name angular-data
* @description
* __Version:__ 1.0.0-beta.4
* __Version:__ 1.0.0-rc.1
*
* ## Install
*
Expand Down

0 comments on commit 66a836a

Please sign in to comment.