Skip to content

Commit

Permalink
Bump and build v3.4.1
Browse files Browse the repository at this point in the history
Contains the changelog

Also contains a small fix to `gulp build` as it was using the `package.json` module field.
  • Loading branch information
paulfalgout committed Aug 8, 2017
1 parent ae33973 commit 0930c5a
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The Backbone Framework",
"homepage": "https://marionettejs.com/",
"main": "./lib/backbone.marionette.js",
"version": "3.4.0",
"version": "3.4.1",
"license": "MIT",
"keywords": [
"backbone",
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### v3.4.1 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v3.4.0...v3.4.1)

#### Fixes
* Options passed to a behavior are now correctly passed to the behavior
* The ES6 module is no longer exposed in `package.json` as this was breaking for some builds
* The `detachContents` will now correctly detach when using `monitorViewEvents: false` on a `NextCollectionView`

### v3.4.0 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v3.3.1...v3.4.0)

#### Features
Expand Down
2 changes: 1 addition & 1 deletion gulp/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const rollupGlobals = {
function makeESModule(bundle) {
bundle.write({
format: 'es',
dest: pkg.module,
dest: 'lib/backbone.marionette.esm.js',
sourceMap: true,
banner: banner,
globals: rollupGlobals
Expand Down
8 changes: 4 additions & 4 deletions lib/backbone.marionette.esm.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.esm.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 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": "3.4.0",
"version": "3.4.1",
"homepage": "https://marionettejs.com/",
"main": "lib/backbone.marionette.js",
"keywords": [
Expand Down

0 comments on commit 0930c5a

Please sign in to comment.