Skip to content

Commit 412c8fb

Browse files
committed
added 1.1.1 release notes
1 parent 943b660 commit 412c8fb

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ user.get('addresses[0]', {silent:true}); // (silent)
168168

169169
## Changelog
170170

171+
#### 1.1.1 ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.0...v1.1.1?w=1))
172+
173+
* fixed `remove()` to not insert array back into itself
174+
* upgraded test suite to Backbone 0.9.2
175+
171176
#### 1.1.0 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.3...v1.1.0?w=1))
172177

173178
* Backbone 0.9.1 compatibiity

backbone-nested.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
2-
* Backbone-Nested 1.1.0 - An extension of Backbone.js that keeps track of nested attributes
2+
* Backbone-Nested 1.1.1 - An extension of Backbone.js that keeps track of nested attributes
33
*
44
* http://afeld.github.com/backbone-nested/
55
*
66
* Copyright (c) 2011-2012 Aidan Feldman
77
* MIT Licensed (LICENSE)
88
*/
9-
/*global Backbone, _, $ */
9+
/*global window, $, _, Backbone */
1010
(function(){
1111
'use strict';
1212

@@ -31,7 +31,7 @@
3131

3232
// check if the result is an Object, Array, etc.
3333
if (!opts.silent && _.isObject(result) && window.console){
34-
window.console.log("Backbone-Nested syntax is preferred for accesing values of attribute '" + attrStrOrPath + "'.");
34+
window.console.warn("Backbone-Nested syntax is preferred for accesing values of attribute '" + attrStrOrPath + "'.");
3535
}
3636
// else it's a leaf
3737

0 commit comments

Comments
 (0)