Skip to content

Commit 3e46993

Browse files
committed
v0.35.1
1 parent 699f87f commit 3e46993

File tree

9 files changed

+30
-14
lines changed

9 files changed

+30
-14
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# es6-shim 0.35.1 (12 May 2016)
2+
* [Fix] Functions are objects (#418)
3+
* [Fix] use `createDataPropertyOrThrow` in `Array.from`, rather than `[[Put]]` (#415)
4+
* [Refactor] Use `iteratorResult` internally for iterator result objects
5+
* [Refactor] Simplify logic for Math.tanh (#412)
6+
* [Robustness] cache `Math` constants
7+
* [Robustness] cache `Math.exp`
8+
* [Robustness] don’t rely on a `Math` lookup inside `Math.asinh`
9+
* [Robustness] use cached `Number.isNaN`
10+
* [Robustness] cache `Math.sign`
11+
* [Dev Deps] update `es5-shim`, `eslint`, `@ljharb/eslint-config`, `jscs`, `uglify-js`, `grunt-contrib-connect`, `grunt-contrib-watch`, `evalmd`, `jshint`
12+
* [Tests] up to `node` `v6.1`, `v5.10`, `v4.4`
13+
* [Tests] `npm run --silent`, use “pretest” for linting
14+
* [Tests] `RegExp#toString`: Chrome Canary 51 produces `/undefined/`
15+
* [Docs] update ES6 draft comment URLs to point to the published spec
16+
117
# es6-shim 0.35.0 (29 Feb 2016)
218
* [Breaking] remove `Reflect.enumerate` (#405)
319
* [New] Add `Array#indexOf` from post-ES6 errata

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es6-shim",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"repo": "paulmillr/es6-shim",
55
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
66
"keywords": [

es6-sham.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* https://github.com/paulmillr/es6-shim
33
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
44
* and contributors, MIT License
5-
* es6-sham: v0.35.0
6-
* see https://github.com/paulmillr/es6-shim/blob/0.35.0/LICENSE
5+
* es6-sham: v0.35.1
6+
* see https://github.com/paulmillr/es6-shim/blob/0.35.1/LICENSE
77
* Details and documentation:
88
* https://github.com/paulmillr/es6-shim/
99
*/

es6-sham.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.

es6-sham.min.js

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

es6-shim.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* https://github.com/paulmillr/es6-shim
33
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
44
* and contributors, MIT License
5-
* es6-shim: v0.35.0
6-
* see https://github.com/paulmillr/es6-shim/blob/0.35.0/LICENSE
5+
* es6-shim: v0.35.1
6+
* see https://github.com/paulmillr/es6-shim/blob/0.35.1/LICENSE
77
* Details and documentation:
88
* https://github.com/paulmillr/es6-shim/
99
*/

es6-shim.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.

es6-shim.min.js

Lines changed: 4 additions & 4 deletions
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,6 +1,6 @@
11
{
22
"name": "es6-shim",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"author": "Paul Miller (http://paulmillr.com)",
55
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
66
"keywords": [

0 commit comments

Comments
 (0)