Skip to content

Commit

Permalink
Stable Version 1.0.0-beta.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Aug 30, 2014
1 parent de5a20c commit ef8e42b
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 22 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##### 1.0.0-beta.3 - 30 August 2014

###### Backwards compatible bug fixes
- Unfroze resource definitions

##### 1.0.0-beta.2 - 27 August 2014

###### Breaking API changes
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.2](http://angular-data.pseudobry.com/)
__master:__ [1.0.0-beta.2](http://angular-data-next.pseudobry.com/)
__Latest Release:__ [1.0.0-beta.3](http://angular-data.pseudobry.com/)
__master:__ [1.0.0-beta.3](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
6 changes: 3 additions & 3 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.2",
"version": "1.0.0-beta.3",
"homepage": "http://angular-data.pseudobry.com/",
"repository": {
"type": "git",
Expand All @@ -28,9 +28,9 @@
"devDependencies": {
"angular": "~1.2.22",
"angular-mocks": "~1.2.22",
"angular-cache": "~3.1.0",
"angular-cache": "~3.1.1",
"observe-js": "0.3.4",
"angular-data-mocks": "~0.5.5",
"angular-data-mocks": "~0.6.0",
"bootstrap": "~3.2.0"
}
}
8 changes: 2 additions & 6 deletions dist/angular-data.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @author Jason Dobry <jason.dobry@gmail.com>
* @file angular-data.js
* @version 1.0.0-beta.2 - Homepage <http://angular-data.pseudobry.com/>
* @version 1.0.0-beta.3 - 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>
*
Expand Down Expand Up @@ -4969,10 +4969,6 @@ function defineResource(definition) {
def.beforeDestroy = DS.$q.promisify(def.beforeDestroy);
def.afterDestroy = DS.$q.promisify(def.afterDestroy);

if (typeof Object.freeze === 'function') {
Object.freeze(def);
}

return def;
} catch (err) {
DS.$log.error(err);
Expand Down Expand Up @@ -6549,7 +6545,7 @@ module.exports = [function () {
* @id angular-data
* @name angular-data
* @description
* __Version:__ 1.0.0-beta.2
* __Version:__ 1.0.0-beta.3
*
* ## Install
*
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-data.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 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.2</li>
<li class="nav-header">Angular-data - 1.0.0-beta.3</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.5.5</li>
<li class="nav-header">Angular-data-mocks - 0.6.0</li>
<li>
<a href="/documentation/api/angular-data-mocks/angular-data-mocks">Overview</a>
</li>
Expand All @@ -107,7 +107,7 @@
<a href="/documentation/api/angular-data-mocks/DSHttpAdapter">DSHttpAdapter</a>
</li>
<li class="divider"></li>
<li class="nav-header">Angular-cache - 3.1.0</li>
<li class="nav-header">Angular-cache - 3.1.1</li>
<li>
<a href="/documentation/api/angular-cache/angular-cache">Overview</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion 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.2",
"version": "1.0.0-beta.3",
"homepage": "http://angular-data.pseudobry.com",
"repository": {
"type": "git",
Expand Down
4 changes: 0 additions & 4 deletions src/datastore/sync_methods/defineResource.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,6 @@ function defineResource(definition) {
def.beforeDestroy = DS.$q.promisify(def.beforeDestroy);
def.afterDestroy = DS.$q.promisify(def.afterDestroy);

if (typeof Object.freeze === 'function') {
Object.freeze(def);
}

return def;
} catch (err) {
DS.$log.error(err);
Expand Down
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.2
* __Version:__ 1.0.0-beta.3
*
* ## Install
*
Expand Down

0 comments on commit ef8e42b

Please sign in to comment.