From 2caccaaeb701fcf4fcf88ed6a3e31f6f8e40cc26 Mon Sep 17 00:00:00 2001 From: rock Date: Sun, 25 Jan 2015 01:12:24 +0600 Subject: [PATCH] 0.4.7 --- README.md | 8 +++++--- bower.json | 2 +- client/core.js | 2 +- client/core.min.js | 2 +- client/library.js | 2 +- client/library.min.js | 2 +- client/shim.js | 2 +- client/shim.min.js | 2 +- index.js | 2 +- library.js | 2 +- package.json | 2 +- shim.js | 2 +- 12 files changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index f78e07e126c0..3f9e3c40edc1 100644 --- a/README.md +++ b/README.md @@ -414,7 +414,7 @@ console.log(wset.has([2])); // => false wset.delete(b); console.log(wset.has(b)); // => false ``` -**Caveat**: frozen objects can't be collection keys. +**Caveat**: frozen objects can't be `WeakMap` keys in IE11 (don't wanna fully replace native implementation). ### ECMAScript 6: Iterators Module `es6`: ```javascript @@ -1283,9 +1283,11 @@ var core = require('core-js/library'); require('core-js/shim'); ``` ## Changelog +**0.4.7** - *2015.01.25* - Added support frozen objects as [collections](#ecmascript-6-collections) keys + **0.4.6** - *2015.01.21* - * added `Object.getOwnPropertySymbols` - * added `NodeList.prototype[@@iterator]` + * added [`Object.getOwnPropertySymbols`](#ecmascript-6-symbols) + * added [`NodeList.prototype[@@iterator]`](#ecmascript-6-iterators) * added basic `@@species` logic - getter in native constructors * removed `Function#by` * some fixes diff --git a/bower.json b/bower.json index 407c15018eb9..225e260623ce 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "core.js", "main": "client/core.js", - "version": "0.4.6", + "version": "0.4.7", "description": "Standard Library", "keywords": [ "ES6", diff --git a/client/core.js b/client/core.js index 2b14a3299e1d..250e63701064 100644 --- a/client/core.js +++ b/client/core.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/client/core.min.js b/client/core.min.js index 7f9741d39e7f..45b36e7ba95a 100644 --- a/client/core.min.js +++ b/client/core.min.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/client/library.js b/client/library.js index 49dbafd095af..0d7512f39320 100644 --- a/client/library.js +++ b/client/library.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/client/library.min.js b/client/library.min.js index db9f09461507..1eb2ef226d5f 100644 --- a/client/library.min.js +++ b/client/library.min.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/client/shim.js b/client/shim.js index fe51fb44eef1..c198771c414c 100644 --- a/client/shim.js +++ b/client/shim.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/client/shim.min.js b/client/shim.min.js index b14f8a71d8e1..22e1dad1b5ff 100644 --- a/client/shim.min.js +++ b/client/shim.min.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/index.js b/index.js index 5bf45b968091..e392f3b21671 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/library.js b/library.js index 6686cbd7c8eb..eaee96dcf591 100644 --- a/library.js +++ b/library.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev diff --git a/package.json b/package.json index 3d65cbffa040..fd81b38c21f2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "core-js", "description": "Standard library", - "version": "0.4.6", + "version": "0.4.7", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git" diff --git a/shim.js b/shim.js index d6c32a3332a5..107853262188 100644 --- a/shim.js +++ b/shim.js @@ -1,5 +1,5 @@ /** - * Core.js 0.4.6 + * Core.js 0.4.7 * https://github.com/zloirock/core-js * License: http://rock.mit-license.org * © 2015 Denis Pushkarev