Skip to content

Commit 78e307c

Browse files
committed
v0.34.2
1 parent 57ff7fa commit 78e307c

File tree

8 files changed

+22
-13
lines changed

8 files changed

+22
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# es6-shim x.x.x (not yet released)
22

3+
# es6-shim 0.34.2 (22 Jan 2016)
4+
* [Fix] `JSON.stringify` should ignore a replacer arg unless it’s an array or function.
5+
* [Fix] `Array#copyWithin`: check for inherited properties as well
6+
* [Fix] `Array#copyWithin`: should delete the target key if the source key is not present
7+
* [Performance] Optimize Map/Set fast key path (#397)
8+
* [Tests] fix `Reflect.enumerate` tests to not call `next` too many times
9+
* [Dev Deps] update `jscs`, `jshint`
10+
* [Docs] update license year to 2016 (#400)
11+
312
# es6-shim 0.34.1 (5 Jan 2016)
413
* [Fix] `RegExp#[Symbol.search]` was broken with a regex argument (#394)
514
* [Fix] ensure that Set#clear works with both primitive and object values

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.34.1",
3+
"version": "0.34.2",
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.34.1
6-
* see https://github.com/paulmillr/es6-shim/blob/0.34.1/LICENSE
5+
* es6-sham: v0.34.2
6+
* see https://github.com/paulmillr/es6-shim/blob/0.34.2/LICENSE
77
* Details and documentation:
88
* https://github.com/paulmillr/es6-shim/
99
*/

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.34.1
6-
* see https://github.com/paulmillr/es6-shim/blob/0.34.1/LICENSE
5+
* es6-shim: v0.34.2
6+
* see https://github.com/paulmillr/es6-shim/blob/0.34.2/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.34.1",
3+
"version": "0.34.2",
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)