Skip to content

Commit

Permalink
Bump and build v4.1.3 (#3682)
Browse files Browse the repository at this point in the history
Additionally adds a note about the move to v5
  • Loading branch information
paulfalgout committed Nov 12, 2020
1 parent c59fab9 commit 9c0147b
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "backbone.marionette",
"description": "The Backbone Framework",
"homepage": "https://marionettejs.com/",
"version": "4.1.2",
"version": "4.1.3",
"main": "./lib/backbone.marionette.js",
"license": "MIT",
"keywords": [
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### v4.1.3 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v4.1.2...v4.1.3)

#### Fixes
* unbindRequests now passes context.

### v4.1.2 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v4.1.1...v4.1.2)

#### Fixes
Expand Down
6 changes: 3 additions & 3 deletions lib/backbone.marionette.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Backbone from 'backbone';
import _ from 'underscore';
import Radio from 'backbone.radio';

var version = "4.1.2";
var version = "4.1.3";

//Internal utility for creating context style global utils
var proxy = function proxy(method) {
Expand Down Expand Up @@ -135,7 +135,7 @@ function unbindRequests(channel, bindings) {
return this;
}

channel.stopReplying(normalizeBindings$1(this, bindings));
channel.stopReplying(normalizeBindings$1(this, bindings), this);
return this;
}

Expand Down Expand Up @@ -2364,7 +2364,7 @@ var CollectionView = Backbone.View.extend({
removeComparator: function removeComparator(options) {
return this.setComparator(null, options);
},
// If viewComparator is overriden it will be returned here.
// If viewComparator is overridden it will be returned here.
// Additionally override this function to provide custom
// viewComparator logic
getComparator: function getComparator() {
Expand Down
10 changes: 5 additions & 5 deletions lib/backbone.marionette.js

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

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

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": "The Backbone Framework",
"version": "4.1.2",
"version": "4.1.3",
"homepage": "https://marionettejs.com/",
"browser": "lib/backbone.marionette.js",
"main": "lib/backbone.marionette.js",
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<img src='https://saucelabs.com/browser-matrix/marionettejs.svg' alt='Cross Browser Testing' />
</p>

# Marionette v5

Marionette is dropping its dependency on Backbone. That library is available here: https://github.com/marionettejs/marionette
Until further notices changes to `backbone.marionette` will be limited to fixes. All new feature work will take place on `marionette`.

## Marionette v4

Marionette 4 is now available! See our
Expand Down

0 comments on commit 9c0147b

Please sign in to comment.