Skip to content

Commit

Permalink
bump and build v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Mar 1, 2014
1 parent e13e912 commit 46372c1
Show file tree
Hide file tree
Showing 37 changed files with 601 additions and 582 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"./lib/backbone.marionette.js",
"./lib/core/amd/backbone.marionette.js"
],
"version": "1.6.2",
"version": "1.6.3",
"keywords": [
"backbone",
"framework",
Expand Down
41 changes: 40 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,50 @@
### v1.6.3 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.6.2...v1.6.3)
* Improvements
* Enable more direct module instantiation on `Marionette.App`.
```js
var ItemModule = Marionette.Module.extend({
startWithParent: false,
initialize: function(options) {},
onStart: function() {}
});

// ...

this.app.module('Items', ItemModule);
```
* `ui` hash interpolation now supports a functional `ui` hash.

```js
ui: function() {
return {
"click @ui.foo": "attack"
}
}
```
* Fixes
* Fix `@ui` interpolation for handling complex selectors.

```js
{
"click div:not(@ui.bar)": "tapper"
}
```
* Bump `backbone.babysitter` and `backbone.wreqr` versions.
* General
* Improve readme docs for `CollectionView`, `AppRouter` and `ItemView`.
* Handle THE [npm self sign cert problem](http://blog.npmjs.org/post/78085451721/npms-self-signed-certificate-is-no-more)
* Replace unneeded argument slicing.
* Normalize error throwing to use internal `throwError` helper method.
* Use `_` type checks for non performant code to improve readability and consistency.

### v1.6.2 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.6.1...v1.6.2)
* CollectionView/CompositeView
* allow `itemEvents` to use string based method names [PR 875](https://github.com/marionettejs/backbone.marionette/pull/875)
* Modules
* update module initialize to include moduleName and app [PR 898](https://github.com/marionettejs/backbone.marionette/pull/898)
* General
* significantly improve module documentation [PR 897](https://github.com/marionettejs/backbone.marionette/pull/897)

### v1.6.1 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.6.0...v1.6.1)
* Modules
* Fix a bug where a module would not start by default when defined as an object literal
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "backbone.marionette",
"description": "Make your Backbone.js apps dance!",
"version": "1.6.1",
"version": "1.6.3",
"repo": "marionettejs/backbone.marionette",
"main": "lib/core/amd/backbone.marionette.js",
"keywords": [
Expand Down
Loading

0 comments on commit 46372c1

Please sign in to comment.