Skip to content

Commit

Permalink
2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Mar 18, 2016
1 parent 9d4c0f9 commit e482646
Show file tree
Hide file tree
Showing 16 changed files with 77 additions and 71 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## Changelog
##### 2.2.1 - 2016.03.19
- Fixed `Object.getOwnPropertyNames(window)` `2.1+` versions bug, [#181](https://github.com/zloirock/core-js/issues/181)

##### 2.2.0 - 2016.03.15
- Added `String#matchAll`, [proposal](https://github.com/tc39/String.prototype.matchAll)
- Added `Object#__(define|lookup)[GS]etter__`, [annex B ES2017](https://github.com/tc39/ecma262/pull/381)
Expand Down
94 changes: 47 additions & 47 deletions README.md

Large diffs are not rendered by default.

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": "2.2.0",
"version": "2.2.1",
"description": "Standard Library",
"keywords": [
"ES3",
Expand Down
4 changes: 2 additions & 2 deletions build/core-js-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "core-js-builder",
"description": "core-js builder",
"version": "2.2.0",
"version": "2.2.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"main": "index.js",
"dependencies": {
"core-js": "2.2.0",
"core-js": "2.2.1",
"webpack": "1.12.x",
"temp": "0.8.x"
},
Expand Down
7 changes: 4 additions & 3 deletions client/core.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.2.0
* core-js 2.2.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2016 Denis Pushkarev
Expand Down Expand Up @@ -492,7 +492,7 @@
/* 3 */
/***/ function(module, exports) {

var core = module.exports = {version: '2.2.0'};
var core = module.exports = {version: '2.2.1'};
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef

/***/ },
Expand Down Expand Up @@ -1144,7 +1144,7 @@

var getWindowNames = function(it){
try {
return gOPN.f(it);
return gOPN(it);
} catch(e){
return windowNames.slice();
}
Expand All @@ -1154,6 +1154,7 @@
return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));
};


/***/ },
/* 45 */
/***/ function(module, exports, __webpack_require__) {
Expand Down
4 changes: 2 additions & 2 deletions client/core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/core.min.js.map

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions client/library.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.2.0
* core-js 2.2.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2016 Denis Pushkarev
Expand Down Expand Up @@ -480,7 +480,7 @@
/* 3 */
/***/ function(module, exports) {

var core = module.exports = {version: '2.2.0'};
var core = module.exports = {version: '2.2.1'};
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef

/***/ },
Expand Down Expand Up @@ -1119,7 +1119,7 @@

var getWindowNames = function(it){
try {
return gOPN.f(it);
return gOPN(it);
} catch(e){
return windowNames.slice();
}
Expand All @@ -1129,6 +1129,7 @@
return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));
};


/***/ },
/* 45 */
/***/ function(module, exports, __webpack_require__) {
Expand Down
4 changes: 2 additions & 2 deletions client/library.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/library.min.js.map

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions client/shim.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.2.0
* core-js 2.2.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2016 Denis Pushkarev
Expand Down Expand Up @@ -478,7 +478,7 @@
/* 3 */
/***/ function(module, exports) {

var core = module.exports = {version: '2.2.0'};
var core = module.exports = {version: '2.2.1'};
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef

/***/ },
Expand Down Expand Up @@ -1130,7 +1130,7 @@

var getWindowNames = function(it){
try {
return gOPN.f(it);
return gOPN(it);
} catch(e){
return windowNames.slice();
}
Expand All @@ -1140,6 +1140,7 @@
return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));
};


/***/ },
/* 45 */
/***/ function(module, exports, __webpack_require__) {
Expand Down
4 changes: 2 additions & 2 deletions client/shim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/shim.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion library/modules/_core.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var core = module.exports = {version: '2.2.0'};
var core = module.exports = {version: '2.2.1'};
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
2 changes: 1 addition & 1 deletion modules/_core.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var core = module.exports = {version: '2.2.0'};
var core = module.exports = {version: '2.2.1'};
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
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": "2.2.0",
"version": "2.2.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit e482646

Please sign in to comment.