Skip to content

Commit

Permalink
v0.35.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 30, 2018
1 parent d6a3484 commit 271142c
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 23 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
# es6-shim 0.35.4 (29 October 2018)
* [Fix] protect against evil build processes by ensuring these feature tests don‘t look like no-ops that are safe to remove
* [Fix] broken `hasULPDistance` → working `withinULPDistance` helper
* [Fix] `acosh`: fix precision (#338)
* [Fix] `Math.{asinh,atanh,cosh,sinh}` precision (from #338)
* [Fix] Google Translate adds a broken `Set` to the global scope (#438)
* [Fix] Distinguish Set and Map iterators (#387)
* [Docs] Tweaking documentation specifying inclusion order (#435)

# es6-shim 0.35.3 (23 January 2017)
* [Fix] avoid needlessly shimming `Array#{find, findIndex}` (#433)
* [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `grunt-saucelabs`
Expand Down
2 changes: 1 addition & 1 deletion es6-sham.js
Expand Up @@ -2,7 +2,7 @@
* https://github.com/paulmillr/es6-shim
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
* and contributors, MIT License
* es6-sham: v0.35.3
* es6-sham: v0.35.4
* see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
* Details and documentation:
* https://github.com/paulmillr/es6-shim/
Expand Down
18 changes: 9 additions & 9 deletions es6-sham.min.js

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

2 changes: 1 addition & 1 deletion es6-shim.js
Expand Up @@ -2,7 +2,7 @@
* https://github.com/paulmillr/es6-shim
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
* and contributors, MIT License
* es6-shim: v0.35.3
* es6-shim: v0.35.4
* see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
* Details and documentation:
* https://github.com/paulmillr/es6-shim/
Expand Down
2 changes: 1 addition & 1 deletion es6-shim.map

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions es6-shim.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
"version": "0.35.3",
"version": "0.35.4",
"author": "Paul Miller (http://paulmillr.com)",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
Expand All @@ -23,6 +23,7 @@
},
"main": "es6-shim",
"scripts": {
"prepublish": "safe-publish-latest && npm run minify",
"pretest": "npm run lint && evalmd *.md",
"test": "npm run tests-only",
"tests-only": "npm run test:shim && npm run test:sham",
Expand Down Expand Up @@ -82,6 +83,7 @@
"mocha": "^3.5.3",
"promises-aplus-tests": "^2.1.2",
"promises-es6-tests": "^0.5.0",
"safe-publish-latest": "^1.1.2",
"uglify-js": "2.7.3"
}
}

0 comments on commit 271142c

Please sign in to comment.