Skip to content

Commit

Permalink
0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 24, 2015
1 parent e517274 commit 2caccaa
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 14 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core.js",
"main": "client/core.js",
"version": "0.4.6",
"version": "0.4.7",
"description": "Standard Library",
"keywords": [
"ES6",
Expand Down
2 changes: 1 addition & 1 deletion client/core.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion client/core.min.js

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

2 changes: 1 addition & 1 deletion client/library.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion client/library.min.js

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

2 changes: 1 addition & 1 deletion client/shim.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion client/shim.min.js

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

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion library.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion shim.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2caccaa

Please sign in to comment.