Skip to content

Commit

Permalink
2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 18, 2018
1 parent 3866e96 commit a5def74
Show file tree
Hide file tree
Showing 13 changed files with 83 additions and 80 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.6.1 - 2018.12.18
- Fixed an issue with minified version, [#463](https://github.com/zloirock/core-js/issues/463)

##### 2.6.0 - 2018.12.05
- Add direct .exec calling to `RegExp#{@@replace, @@split, @@match, @@search}`. Also, added fixes for `RegExp#exec` method. [#411](https://github.com/zloirock/core-js/issues/411), [#428](https://github.com/zloirock/core-js/issues/428), [#434](https://github.com/zloirock/core-js/issues/434), [#435](https://github.com/zloirock/core-js/issues/435), [#453](https://github.com/zloirock/core-js/issues/453), [#458](https://github.com/zloirock/core-js/issues/458), thanks [**@nicolo-ribaudo**](https://github.com/nicolo-ribaudo).

Expand Down
124 changes: 62 additions & 62 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.6.0",
"version": "2.6.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.6.0",
"version": "2.6.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"main": "index.js",
"dependencies": {
"core-js": "2.6.0",
"core-js": "2.6.1",
"temp": "^0.8.3",
"webpack": "^3.11.0"
},
Expand Down
4 changes: 2 additions & 2 deletions client/core.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.6.0
* core-js 2.6.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2018 Denis Pushkarev
Expand Down Expand Up @@ -273,7 +273,7 @@ module.exports = function (it, key) {
/* 13 */
/***/ (function(module, exports) {

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


Expand Down
4 changes: 2 additions & 2 deletions client/core.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/library.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.6.0
* core-js 2.6.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2018 Denis Pushkarev
Expand Down Expand Up @@ -282,7 +282,7 @@ module.exports = function (it) {
/* 12 */
/***/ (function(module, exports) {

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


Expand Down
4 changes: 2 additions & 2 deletions client/library.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/shim.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* core-js 2.6.0
* core-js 2.6.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2018 Denis Pushkarev
Expand Down Expand Up @@ -550,7 +550,7 @@ module.exports = function (TYPE, $create) {
/* 26 */
/***/ (function(module, exports) {

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


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 library/modules/_core.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var core = module.exports = { version: '2.6.0' };
var core = module.exports = { version: '2.6.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.6.0' };
var core = module.exports = { version: '2.6.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.6.0",
"version": "2.6.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit a5def74

Please sign in to comment.