Skip to content

Commit

Permalink
bumping version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tbranyen committed Dec 5, 2012
1 parent c5bf36f commit 284d081
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions 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.
*/
Expand Down Expand Up @@ -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.
Expand Down
8 changes: 8 additions & 0 deletions 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.
Expand Down
6 changes: 3 additions & 3 deletions 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"
}
}
9 changes: 0 additions & 9 deletions grunt.js
Expand Up @@ -2,15 +2,6 @@ module.exports = function(grunt) {
"use strict";

grunt.initConfig({
pkg: "<json:package.json>",

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"]
},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -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/",

Expand All @@ -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"
},

Expand Down
13 changes: 7 additions & 6 deletions 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)
Expand All @@ -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)

Expand Down

0 comments on commit 284d081

Please sign in to comment.