Skip to content

Commit a6b3f03

Browse files
committed
Revert "3.6.5"
This reverts commit d73658c
1 parent 78f64eb commit a6b3f03

File tree

8 files changed

+68
-74
lines changed

8 files changed

+68
-74
lines changed

CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
## Changelog
2-
##### 3.6.5 - 2020.04.09
3-
- Updated Browserlist [#755](https://github.com/zloirock/core-js/issues/755)
4-
- Fixed `setImmediate` in Safari [#770](https://github.com/zloirock/core-js/issues/770), thanks [@dtinth](https://github.com/dtinth)
5-
- Fixed some regexp, thanks [@dtinth](https://github.com/dtinth)
6-
- Added Drone CI in `postinstall` CI detection [#781](https://github.com/zloirock/core-js/issues/781)
7-
82
##### 3.6.4 - 2020.01.14
93
- Prevented a possible almost infinite loop in non-standard implementations of some backward iteration array methods
104

@@ -1122,4 +1116,4 @@
11221116
* `Map` & `Set` bug fix
11231117

11241118
##### 0.1.1 - 2014.11.18
1125-
* Public release
1119+
* Public release

README.md

Lines changed: 59 additions & 59 deletions
Large diffs are not rendered by default.

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.6.5",
4+
"version": "3.6.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"
88
},
99
"main": "index.js",
1010
"dependencies": {
11-
"core-js": "3.6.5",
12-
"core-js-compat": "3.6.5",
11+
"core-js": "3.6.4",
12+
"core-js-compat": "3.6.4",
1313
"mkdirp": "^0.5.1",
1414
"webpack": "^4.41.5"
1515
},

packages/core-js-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-bundle",
33
"description": "Standard library",
4-
"version": "3.6.5",
4+
"version": "3.6.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-compat",
33
"description": "core-js compat",
4-
"version": "3.6.5",
4+
"version": "3.6.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js-pure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-pure",
33
"description": "Standard library",
4-
"version": "3.6.5",
4+
"version": "3.6.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js/internals/shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var store = require('../internals/shared-store');
44
(module.exports = function (key, value) {
55
return store[key] || (store[key] = value !== undefined ? value : {});
66
})('versions', []).push({
7-
version: '3.6.5',
7+
version: '3.6.4',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
1010
});

packages/core-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js",
33
"description": "Standard library",
4-
"version": "3.6.5",
4+
"version": "3.6.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)