From 284d08128580f04c7a60367c7e66551b1dbbfeeb Mon Sep 17 00:00:00 2001 From: Tim Branyen Date: Wed, 5 Dec 2012 17:21:04 -0500 Subject: [PATCH] bumping version to 0.7.3 --- backbone.layoutmanager.js | 4 ++-- changelog.md | 8 ++++++++ component.json | 6 +++--- grunt.js | 9 --------- package.json | 4 ++-- readme.md | 13 +++++++------ 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/backbone.layoutmanager.js b/backbone.layoutmanager.js index 16524b77..fe0e0cc1 100644 --- a/backbone.layoutmanager.js +++ b/backbone.layoutmanager.js @@ -1,5 +1,5 @@ /*! - * backbone.layoutmanager.js v0.7.2 + * backbone.layoutmanager.js v0.7.3 * Copyright 2012, Tim Branyen (@tbranyen) * backbone.layoutmanager.js may be freely distributed under the MIT license. */ @@ -707,7 +707,7 @@ var LayoutManager = Backbone.View.extend({ // Convenience assignment to make creating Layout's slightly shorter. Backbone.Layout = Backbone.LayoutView = Backbone.LayoutManager = LayoutManager; // Tack on the version. -LayoutManager.VERSION = "0.7.2"; +LayoutManager.VERSION = "0.7.3"; // Override _configure to provide extra functionality that is necessary in // order for the render function reference to be bound during initialize. diff --git a/changelog.md b/changelog.md index 665401d8..af3c4652 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +### 0.7.2 ### + +* Fixed cheerio rendering bug with the latest version. +* Explicity depend and require underscore in NPM. +* Repeated subViews are a thing of the past :D. +* Fixed serialize/data priority. +* Fixed lodash issues and added in separate lodash testing. + ### 0.7.1 ### * Views that have already been rendered can now be inserted into existing Views. diff --git a/component.json b/component.json index 25d99d07..d458e440 100644 --- a/component.json +++ b/component.json @@ -1,10 +1,10 @@ { "name": "layoutmanager", - "version": "0.7.2", + "version": "0.7.3", "main": "backbone.layoutmanager.js", "dependencies": { - "jquery": ">1.5", - "lodash": "~0.7.0", + "jquery": "~1.8.3", + "lodash": "~0.10.0", "backbone": "~0.9.2" } } diff --git a/grunt.js b/grunt.js index 7a908bf9..34882d6f 100644 --- a/grunt.js +++ b/grunt.js @@ -2,15 +2,6 @@ module.exports = function(grunt) { "use strict"; grunt.initConfig({ - pkg: "", - - meta: { - banner: "/*!\n" + " * backbone.layoutmanager.js v<%= pkg.version %>\n" + - " * Copyright 2012, Tim Branyen (@tbranyen)\n" + - " * backbone.layoutmanager.js may be freely distributed under" + - " the MIT license.\n */" - }, - lint: { files: ["grunt.js", "backbone.layoutmanager.js"] }, diff --git a/package.json b/package.json index 7b306d66..128864a7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "backbone.layoutmanager", "description": "A manager for templates & layouts in Backbone.js", - "version": "0.7.2", + "version": "0.7.3", "homepage": "http://tbranyen.github.com/backbone.layoutmanager/", @@ -21,7 +21,7 @@ "dependencies": { "backbone": "0.9.2", "underscore.deferred": "0.2.0", - "cheerio": "0.10.1", + "cheerio": "0.10.3", "underscore": "1.4.2" }, diff --git a/readme.md b/readme.md index e157c9a5..11db5a17 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,7 @@ Backbone.LayoutManager ====================== -**v0.7.2** [![Build Status](https://secure.travis-ci.org/tbranyen/backbone.layoutmanager.png?branch=master)](http://travis-ci.org/tbranyen/backbone.layoutmanager) +**v0.7.3** [![Build Status](https://secure.travis-ci.org/tbranyen/backbone.layoutmanager.png?branch=master)](http://travis-ci.org/tbranyen/backbone.layoutmanager) Created by Tim Branyen [@tbranyen](http://twitter.com/tbranyen), with help from [awesome contributors](https://github.com/tbranyen/backbone.layoutmanager/contributors) @@ -21,11 +21,12 @@ Migration guide: https://github.com/tbranyen/backbone.layoutmanager/pull/184 ## Release notes ## -* Fixed cheerio rendering bug with the latest version. -* Explicity depend and require underscore in NPM. -* Repeated subViews are a thing of the past :D. -* Fixed serialize/data priority. -* Fixed lodash issues and added in separate lodash testing. +* Refactored `_.extend` to `LayoutManager.augment` to work with Lo-Dash and + underscore. +* Normalized rendering order, when the parent has already rendered. +* Added better error handling for node.js build. +* Updated error message for node.js build. +* Added in Travis-CI and README updates. [Full Release Log](https://github.com/tbranyen/backbone.layoutmanager/blob/master/changelog.md)