Skip to content

Commit ea6ee01

Browse files
committed
3.15.2
1 parent bbb92ea commit ea6ee01

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### 3.15.2 - 2021.06.29
36
- Worked around breakage related to `zone.js` loaded before `core-js`, [#953](https://github.com/zloirock/core-js/issues/953)
47
- Added NodeJS 16.4 -> Chrome 91 compat data mapping
58

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
118118
### Installation:[](#index)
119119
```
120120
// global version
121-
npm install --save [email protected].1
121+
npm install --save [email protected].2
122122
// version without global namespace pollution
123-
npm install --save [email protected].1
123+
npm install --save [email protected].2
124124
// bundled global version
125-
npm install --save [email protected].1
125+
npm install --save [email protected].2
126126
```
127127

128-
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].1) ([minified version](https://unpkg.com/[email protected].1/minified.js)).
128+
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].2) ([minified version](https://unpkg.com/[email protected].2/minified.js)).
129129

130130
### `postinstall` message[](#index)
131131
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.15.1",
2+
"version": "3.15.2",
33
"packages": [
44
"packages/*"
55
]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.15.1",
2+
"version": "3.15.2",
33
"devDependencies": {
44
"@babel/cli": "^7.14.5",
55
"@babel/core": "^7.14.6",

packages/core-js-builder/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.15.1",
4+
"version": "3.15.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",
88
"directory": "packages/core-js-builder"
99
},
1010
"main": "index.js",
1111
"dependencies": {
12-
"core-js": "3.15.1",
13-
"core-js-compat": "3.15.1",
12+
"core-js": "3.15.2",
13+
"core-js-compat": "3.15.2",
1414
"mkdirp": ">=0.5.5 <1",
1515
"webpack": ">=4.46.0 <5"
1616
},

packages/core-js-bundle/package.json

+1-1
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.15.1",
4+
"version": "3.15.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

packages/core-js-compat/package.json

+1-1
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.15.1",
4+
"version": "3.15.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

packages/core-js-pure/package.json

+1-1
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.15.1",
4+
"version": "3.15.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

packages/core-js/internals/shared.js

+1-1
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.15.1',
7+
version: '3.15.2',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
1010
});

packages/core-js/package.json

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

0 commit comments

Comments
 (0)