Skip to content

Commit

Permalink
v0.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 1, 2016
1 parent 7b2414b commit b9eda4e
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 17 deletions.
6 changes: 5 additions & 1 deletion .jscs.json
Expand Up @@ -153,6 +153,10 @@

"requireCapitalizedConstructorsNew": {
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array", "OrigNumber"]
}
},

"requireImportAlphabetized": false,

"disallowSpacesInsideTemplateStringPlaceholders": true
}

14 changes: 13 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,16 @@
# es6-shim x.x.x (not yet released)
# es6-shim 0.35.0 (29 Feb 2016)
* [Breaking] remove `Reflect.enumerate` (#405)
* [New] Add `Array#indexOf` from post-ES6 errata
* [New] Ensure `RegExp#toString` is compliant
* [New] [sham] Add `Function#toString` to `es6-sham`
* [Fix] ensure that a non-object `globals.Reflect` doesn’t break the shim (#392)
* [Fix] In ES3 browsers (like Safari 4) `Reflect.getPrototypeOf` is undefined
* [Fix] `Object.keys`: handle regexes in ES3 browsers (#287)
* [Performance] Early exit from tanh for values outside of +-20 at limits of JS precision (#411)
* [Tests] `Function#name` on `new Function`s is empty string in v8
* [Tests] `Function#name` is non-configurable pre-ES6
* [Tests] up to `node` `v5.7`, `v4.3`
* [Docs] correct readme; we sham Function#name, not toString

# es6-shim 0.34.4 (9 Feb 2016)
* [Fix] 'Uncaught (in promise) TypeError' in Chrome 48 (#408, #407)
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
"version": "0.34.4",
"version": "0.35.0",
"repo": "paulmillr/es6-shim",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions es6-sham.js
Expand Up @@ -2,8 +2,8 @@
* 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.34.4
* see https://github.com/paulmillr/es6-shim/blob/0.34.4/LICENSE
* es6-sham: v0.35.0
* see https://github.com/paulmillr/es6-shim/blob/0.35.0/LICENSE
* Details and documentation:
* https://github.com/paulmillr/es6-shim/
*/
Expand Down
2 changes: 1 addition & 1 deletion es6-sham.map

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

6 changes: 3 additions & 3 deletions es6-sham.min.js

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

4 changes: 2 additions & 2 deletions es6-shim.js
Expand Up @@ -2,8 +2,8 @@
* 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.34.4
* see https://github.com/paulmillr/es6-shim/blob/0.34.4/LICENSE
* es6-shim: v0.35.0
* see https://github.com/paulmillr/es6-shim/blob/0.35.0/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.

8 changes: 4 additions & 4 deletions es6-shim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
"version": "0.34.4",
"version": "0.35.0",
"author": "Paul Miller (http://paulmillr.com)",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
Expand Down

0 comments on commit b9eda4e

Please sign in to comment.