Skip to content

Commit 9c0147b

Browse files
authored
Bump and build v4.1.3 (#3682)
Additionally adds a note about the move to v5
1 parent c59fab9 commit 9c0147b

9 files changed

+25
-15
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "backbone.marionette",
33
"description": "The Backbone Framework",
44
"homepage": "https://marionettejs.com/",
5-
"version": "4.1.2",
5+
"version": "4.1.3",
66
"main": "./lib/backbone.marionette.js",
77
"license": "MIT",
88
"keywords": [

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### v4.1.3 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v4.1.2...v4.1.3)
2+
3+
#### Fixes
4+
* unbindRequests now passes context.
5+
16
### v4.1.2 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v4.1.1...v4.1.2)
27

38
#### Fixes

lib/backbone.marionette.esm.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Backbone from 'backbone';
22
import _ from 'underscore';
33
import Radio from 'backbone.radio';
44

5-
var version = "4.1.2";
5+
var version = "4.1.3";
66

77
//Internal utility for creating context style global utils
88
var proxy = function proxy(method) {
@@ -135,7 +135,7 @@ function unbindRequests(channel, bindings) {
135135
return this;
136136
}
137137

138-
channel.stopReplying(normalizeBindings$1(this, bindings));
138+
channel.stopReplying(normalizeBindings$1(this, bindings), this);
139139
return this;
140140
}
141141

@@ -2364,7 +2364,7 @@ var CollectionView = Backbone.View.extend({
23642364
removeComparator: function removeComparator(options) {
23652365
return this.setComparator(null, options);
23662366
},
2367-
// If viewComparator is overriden it will be returned here.
2367+
// If viewComparator is overridden it will be returned here.
23682368
// Additionally override this function to provide custom
23692369
// viewComparator logic
23702370
getComparator: function getComparator() {

lib/backbone.marionette.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/backbone.marionette.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/backbone.marionette.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/backbone.marionette.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "backbone.marionette",
33
"description": "The Backbone Framework",
4-
"version": "4.1.2",
4+
"version": "4.1.3",
55
"homepage": "https://marionettejs.com/",
66
"browser": "lib/backbone.marionette.js",
77
"main": "lib/backbone.marionette.js",

readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
<img src='https://saucelabs.com/browser-matrix/marionettejs.svg' alt='Cross Browser Testing' />
1919
</p>
2020

21+
# Marionette v5
22+
23+
Marionette is dropping its dependency on Backbone. That library is available here: https://github.com/marionettejs/marionette
24+
Until further notices changes to `backbone.marionette` will be limited to fixes. All new feature work will take place on `marionette`.
25+
2126
## Marionette v4
2227

2328
Marionette 4 is now available! See our

0 commit comments

Comments
 (0)