Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Bump and build v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebuilds committed May 1, 2014
1 parent 27e5f9e commit 6b36a2d
Show file tree
Hide file tree
Showing 20 changed files with 104 additions and 64 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

### v1.3.0
* Add Wreqr.noConflict()
* Add Wreqr.VERSION

### v1.2.1
* Remove AMD builds and add a single UMD style build.

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.wreqr",
"version": "1.2.1",
"version": "1.3.0",
"homepage": "https://github.com/marionettejs/backbone.wreqr",
"authors": [
"Derick Bailey"
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.wreqr",
"description": "A Simple Service Bus For Backbone and Backbone.Marionette",
"version": "1.2.1",
"version": "1.3.0",
"repo": "marionettejs/backbone.wreqr",
"keywords": [
"backbone",
Expand Down
13 changes: 11 additions & 2 deletions lib/backbone.wreqr.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Backbone.Wreqr (Backbone.Marionette)
// ----------------------------------
// v1.2.1
// v1.3.0
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand All @@ -25,8 +25,17 @@
}(this, function(Wreqr, Backbone, _) {
"use strict";

var previousWreqr = Backbone.Wreqr;

Backbone.Wreqr = Wreqr;

Backbone.Wreqr.VERSION = '1.3.0';

Backbone.Wreqr.noConflict = function () {
Backbone.Wreqr = previousWreqr;
return this;
};

// Handlers
// --------
// A registry of functions to call, given a name
Expand Down Expand Up @@ -417,7 +426,7 @@ Wreqr.radio = (function(Wreqr){
var messageSystem = radio._getChannel(channelName)[system];
var args = Array.prototype.slice.call(arguments, 1);

messageSystem[method].apply(messageSystem, args);
return messageSystem[method].apply(messageSystem, args);
};
};

Expand Down
2 changes: 1 addition & 1 deletion lib/backbone.wreqr.map

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

Loading

0 comments on commit 6b36a2d

Please sign in to comment.