Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gruntjs/grunt-contrib-uglify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.10.0
Choose a base ref
...
head repository: gruntjs/grunt-contrib-uglify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.10.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 12, 2015

  1. Do not use "^" versions, ever, use ~

    Today ugilfy.js 2.6.0 broke everything in our setup, we can not go back to an older version, because you specified ^2.5.0.
    Rialgar committed Nov 12, 2015
    Copy the full SHA
    7276245 View commit details
  2. Merge pull request #369 from Rialgar/patch-1

    Do not use "^" versions, ever, use ~
    vladikoff committed Nov 12, 2015
    Copy the full SHA
    326f932 View commit details
  3. v0.10.1

    vladikoff committed Nov 12, 2015
    Copy the full SHA
    2562bb2 View commit details
Showing with 19 additions and 14 deletions.
  1. +4 −0 CHANGELOG
  2. +3 −2 README.md
  3. +12 −12 package.json
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.10.1:
date: 2015-11-12
changes:
- switch to uglify ~2.5
v0.10.0:
date: 2015-10-27
changes:
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# grunt-contrib-uglify v0.10.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-uglify.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/ybtf5vbvtenii561/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master)
# grunt-contrib-uglify v0.10.1 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-uglify.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/ybtf5vbvtenii561/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master)

> Minify files with UglifyJS
@@ -511,6 +511,7 @@ grunt.initConfig({

## Release History

* 2015-11-12   v0.10.1   switch to uglify ~2.5
* 2015-10-27   v0.10.0   bump to uglify ^2.5
* 2015-08-24   v0.9.2   bump to uglify ^2.4.24
* 2015-04-07   v0.9.1   more fixes for mangle options
@@ -543,4 +544,4 @@ grunt.initConfig({

Task submitted by ["Cowboy" Ben Alman](http://benalman.com)

*This file was generated on Tue Oct 27 2015 10:41:14.*
*This file was generated on Thu Nov 12 2015 09:48:34.*
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-uglify",
"description": "Minify files with UglifyJS",
"version": "0.10.0",
"version": "0.10.1",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
@@ -15,19 +15,19 @@
"test": "grunt test"
},
"dependencies": {
"chalk": "^1.0.0",
"lodash": "^3.2.0",
"maxmin": "^1.0.0",
"uglify-js": "^2.5.0",
"uri-path": "^1.0.0"
"chalk": "~1.0.0",
"lodash": "~3.2.0",
"maxmin": "~1.0.0",
"uglify-js": "~2.5.0",
"uri-path": "~1.0.0"
},
"devDependencies": {
"grunt": "^0.4.2",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-internal": "^0.4.12",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.0"
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-internal": "~0.4.12",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-nodeunit": "~0.4.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"