Skip to content

Commit 66a836a

Browse files
committed
Stable Version 1.0.0-rc.1.
1 parent 1793a7d commit 66a836a

File tree

8 files changed

+21
-22
lines changed

8 files changed

+21
-22
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
##### 1.0.0-beta.4 - 02 September 2014
1+
##### 1.0.0-rc.1 - 03 September 2014
22

33
###### Backwards compatible API changes
44
- #142 - Update references on eject (Added `DS.unlinkInverse`)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Unlike Backbone and Ember Models, angular-data does not require the use of gette
88

99
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.
1010

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

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

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Jason Dobry",
33
"name": "angular-data",
44
"description": "Data store for Angular.js.",
5-
"version": "1.0.0-beta.4",
5+
"version": "1.0.0-rc.1",
66
"homepage": "http://angular-data.pseudobry.com/",
77
"repository": {
88
"type": "git",
@@ -30,7 +30,7 @@
3030
"angular-mocks": "~1.2.22",
3131
"angular-cache": "~3.1.1",
3232
"observe-js": "0.3.4",
33-
"angular-data-mocks": "~0.6.0",
33+
"angular-data-mocks": "1.0.0-rc.1",
3434
"bootstrap": "~3.2.0"
3535
}
3636
}

dist/angular-data.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
22
* @author Jason Dobry <[email protected]>
33
* @file angular-data.js
4-
* @version 1.0.0-beta.4 - Homepage <http://angular-data.pseudobry.com/>
4+
* @version 1.0.0-rc.1 - Homepage <http://angular-data.pseudobry.com/>
55
* @copyright (c) 2014 Jason Dobry <https://github.com/jmdobry/>
66
* @license MIT <https://github.com/jmdobry/angular-data/blob/master/LICENSE>
77
*
88
* @overview Data store for Angular.js.
99
*/
10-
(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){
10+
(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){
1111
// Copyright 2012 Google Inc.
1212
//
1313
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -924,18 +924,18 @@ var isArray = require('./isArray');
924924
function isEmpty(val){
925925
if (val == null) {
926926
// typeof null == 'object' so we check it first
927-
return false;
927+
return true;
928928
} else if ( typeof val === 'string' || isArray(val) ) {
929929
return !val.length;
930-
} else if ( typeof val === 'object' || typeof val === 'function' ) {
930+
} else if ( typeof val === 'object' ) {
931931
var result = true;
932932
forOwn(val, function(){
933933
result = false;
934934
return false; // break loop
935935
});
936936
return result;
937937
} else {
938-
return false;
938+
return true;
939939
}
940940
}
941941

@@ -6654,7 +6654,7 @@ module.exports = [function () {
66546654
* @id angular-data
66556655
* @name angular-data
66566656
* @description
6657-
* __Version:__ 1.0.0-beta.4
6657+
* __Version:__ 1.0.0-rc.1
66586658
*
66596659
* ## Install
66606660
*
@@ -6818,4 +6818,4 @@ module.exports = [function () {
68186818
};
68196819
}];
68206820

6821-
},{"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]);
6821+
},{"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]);

dist/angular-data.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

guide/nav.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<i class="icon-wrench icon-white"></i> API <b class="caret"></b>
8383
</a>
8484
<ul class="dropdown-menu">
85-
<li class="nav-header">Angular-data - 1.0.0-beta.4</li>
85+
<li class="nav-header">Angular-data - 1.0.0-rc.1</li>
8686
<li>
8787
<a href="/documentation/api/angular-data/angular-data">Overview</a>
8888
</li>
@@ -96,7 +96,7 @@
9696
<a href="/documentation/api/angular-data/DSLocalStorageAdapter">DSLocalStorageAdapter</a>
9797
</li>
9898
<li class="divider"></li>
99-
<li class="nav-header">Angular-data-mocks - 0.6.0</li>
99+
<li class="nav-header">Angular-data-mocks - 1.0.0-rc.1</li>
100100
<li>
101101
<a href="/documentation/api/angular-data-mocks/angular-data-mocks">Overview</a>
102102
</li>

package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-data",
33
"description": "Data store for Angular.js.",
4-
"version": "1.0.0-beta.4",
4+
"version": "1.0.0-rc.1",
55
"homepage": "http://angular-data.pseudobry.com",
66
"repository": {
77
"type": "git",
@@ -20,7 +20,7 @@
2020
],
2121
"devDependencies": {
2222
"grunt": "^0.4.5",
23-
"grunt-browserify": "^2.1.4",
23+
"grunt-browserify": "^3.0.0",
2424
"grunt-contrib-clean": "^0.6.0",
2525
"grunt-contrib-concat": "^0.5.0",
2626
"grunt-contrib-copy": "^0.5.0",
@@ -29,7 +29,7 @@
2929
"grunt-contrib-watch": "^0.6.1",
3030
"grunt-karma": "^0.8.3",
3131
"grunt-karma-coveralls": "^2.5.1",
32-
"karma": "^0.12.22",
32+
"karma": "^0.12.23",
3333
"karma-chai": "^0.1.0",
3434
"karma-chrome-launcher": "^0.1.4",
3535
"karma-coverage": "^0.2.6",
@@ -47,7 +47,6 @@
4747
"test": "grunt test"
4848
},
4949
"dependencies": {
50-
"observe-js": "^0.1.0",
51-
"mout": "^0.9.1"
50+
"mout": "^0.10.0"
5251
}
5352
}

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @id angular-data
77
* @name angular-data
88
* @description
9-
* __Version:__ 1.0.0-beta.4
9+
* __Version:__ 1.0.0-rc.1
1010
*
1111
* ## Install
1212
*

0 commit comments

Comments
 (0)