Skip to content

Commit

Permalink
v0.33.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 2, 2015
1 parent 740822a commit ec37374
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 14 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# es6-shim x.x.x (not yet released)

# es6-shim 0.33.10 (2 Nov 2015)
* [Fix] the `Number` constructor properly trims (or not) whitespace characters (#368)
* [Fix] `Number('0b12')` and `Number('0o18')` should both be `NaN` (#366)
* [Tests] Fix npm upgrades in older nodes
* [Tests] add `npm run tests-only`
* [Tests] on `node` `v5.0`
* [Tests] ensure `JSON.stringify` has the right name
* [Tests] add `npm run eslint`
* [Dev Deps] update `es5-shim`, `jscs`
* [Cleanup] Rearrange things so that they’re defined before they’re used
* [Cleanup] Don't reassign to function or catch parameters
* [Cleanup] Remove unused variables
* [Refactor] String#trim shim should use `defineProperty`, and check more non-whitespace chars

# es6-shim 0.33.9 (29 Oct 2015)
* [Fix] IE 8: `Number(new Number(1))` was throwing. More NFE madness. (#365)

Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
"version": "0.33.9",
"version": "0.33.10",
"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
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* https://github.com/paulmillr/es6-shim
* @license es6-shim Copyright 2013-2015 by Paul Miller (http://paulmillr.com)
* and contributors, MIT License
* es6-sham: v0.33.9
* see https://github.com/paulmillr/es6-shim/blob/0.33.9/LICENSE
* es6-sham: v0.33.10
* see https://github.com/paulmillr/es6-shim/blob/0.33.10/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.

4 changes: 2 additions & 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* https://github.com/paulmillr/es6-shim
* @license es6-shim Copyright 2013-2015 by Paul Miller (http://paulmillr.com)
* and contributors, MIT License
* es6-shim: v0.33.9
* see https://github.com/paulmillr/es6-shim/blob/0.33.9/LICENSE
* es6-shim: v0.33.10
* see https://github.com/paulmillr/es6-shim/blob/0.33.10/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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
"version": "0.33.9",
"version": "0.33.10",
"author": "Paul Miller (http://paulmillr.com)",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
Expand Down

0 comments on commit ec37374

Please sign in to comment.