Skip to content

Commit

Permalink
Bump and build v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Jan 15, 2015
1 parent ea22135 commit 1d3a0c3
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

### v0.1.6

* Expose `reduce` to babysitter collections. Thanks @romanbsd

### v0.1.5

* Minor updates to bower.json
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backbone.babysitter",
"version": "0.1.5",
"version": "0.1.6",
"homepage": "https://github.com/marionettejs/backbone.babysitter",
"authors": [
"Derick Bailey <[email protected]>"
Expand Down
8 changes: 4 additions & 4 deletions lib/backbone.babysitter.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Backbone.BabySitter
// -------------------
// v0.1.5
// v0.1.6
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Copyright (c)2015 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
//
// http://github.com/marionettejs/backbone.babysitter
Expand Down Expand Up @@ -163,7 +163,7 @@
var methods = ['forEach', 'each', 'map', 'find', 'detect', 'filter',
'select', 'reject', 'every', 'all', 'some', 'any', 'include',
'contains', 'invoke', 'toArray', 'first', 'initial', 'rest',
'last', 'without', 'isEmpty', 'pluck'];
'last', 'without', 'isEmpty', 'pluck', 'reduce'];

_.each(methods, function(method) {
Container.prototype[method] = function() {
Expand All @@ -178,7 +178,7 @@
})(Backbone, _);


Backbone.ChildViewContainer.VERSION = '0.1.5';
Backbone.ChildViewContainer.VERSION = '0.1.6';

Backbone.ChildViewContainer.noConflict = function () {
Backbone.ChildViewContainer = previousChildViewContainer;
Expand Down
2 changes: 1 addition & 1 deletion lib/backbone.babysitter.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions lib/backbone.babysitter.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "backbone.babysitter",
"description": "Manage child views in a Backbone.View",
"version": "0.1.5",
"version": "0.1.6",
"homepage": "https://github.com/marionettejs/backbone.babysitter",
"main": "lib/backbone.babysitter.js",
"keywords": [
Expand Down

0 comments on commit 1d3a0c3

Please sign in to comment.