Skip to content

Commit

Permalink
Bump and build v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Jun 19, 2014
1 parent ec83bf4 commit 8b03703
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 12 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/backbone.marionette.js"
],
"version": "2.0.0",
"version": "2.0.1",
"keywords": [
"backbone",
"framework",
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v2.0.0 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v2.0.0...v2.0.1)
* Fix missing Wreqr and Babysitter in Core AMD definition.

### v2.0.0 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.8.8...v2.0.0)
* This is a breaking release and contains many API updates and changes, thus changelog is quite large for this release, please refer to the [google doc](https://docs.google.com/document/d/1fuXb9N5LwmdPn-teMwAo3c8JTx6ifUowbqFY1NNSdp8/edit#) for the full details of what is new and what has changed.

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": "2.0.0",
"version": "2.0.1",
"repo": "marionettejs/backbone.marionette",
"main": "lib/core/amd/backbone.marionette.js",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions lib/backbone.marionette.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v2.0.0
// v2.0.1
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand Down Expand Up @@ -489,7 +489,7 @@

var Marionette = Backbone.Marionette = {};

Marionette.VERSION = '2.0.0';
Marionette.VERSION = '2.0.1';

Marionette.noConflict = function() {
root.Marionette = previousMarionette;
Expand Down
4 changes: 2 additions & 2 deletions lib/backbone.marionette.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/core/backbone.marionette.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v2.0.0
// v2.0.1
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand All @@ -10,7 +10,7 @@
(function(root, factory) {

if (typeof define === 'function' && define.amd) {
define(['backbone', 'underscore'], function(Backbone, _) {
define(['backbone', 'underscore', 'backbone.wreqr', 'backbone.babysitter'], function(Backbone, _) {
return (root.Marionette = factory(root, Backbone, _));
});
} else if (typeof exports !== 'undefined') {
Expand All @@ -30,7 +30,7 @@

var Marionette = Backbone.Marionette = {};

Marionette.VERSION = '2.0.0';
Marionette.VERSION = '2.0.1';

Marionette.noConflict = function() {
root.Marionette = previousMarionette;
Expand Down
2 changes: 1 addition & 1 deletion lib/core/backbone.marionette.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/backbone.marionette.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.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": "2.0.0",
"version": "2.0.1",
"homepage": "https://github.com/marionettejs/backbone.marionette",
"main": "lib/core/backbone.marionette.js",
"keywords": [
Expand Down
3 changes: 3 additions & 0 deletions upgradeGuide.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.0 - v2.0.x
No breaking changes have been introduced between these versions

## v1.x.x - v2.0.0
Large amounts of things have changed between these releases.
Please refer to https://github.com/marionettejs/Marionette.Upgrade to ease the transition from any 1.x app.
Expand Down

0 comments on commit 8b03703

Please sign in to comment.