Skip to content

Commit bfe345a

Browse files
committed
3.11.3
1 parent f26cd0b commit bfe345a

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### 3.11.3 - 2021.05.05
36
- Native promise-based APIs `Promise#{ catch, finally }` returns polyfilled `Promise` instances when it's required
47

58
##### 3.11.2 - 2021.05.03

README.md

Lines changed: 4 additions & 4 deletions
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].2
121+
npm install --save [email protected].3
122122
// version without global namespace pollution
123-
npm install --save [email protected].2
123+
npm install --save [email protected].3
124124
// bundled global version
125-
npm install --save [email protected].2
125+
npm install --save [email protected].3
126126
```
127127

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)).
128+
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].3) ([minified version](https://unpkg.com/[email protected].3/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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.11.2",
2+
"version": "3.11.3",
33
"packages": [
44
"packages/*"
55
]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.11.2",
2+
"version": "3.11.3",
33
"devDependencies": {
44
"@babel/cli": "^7.13.16",
55
"@babel/core": "^7.14.0",

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
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.11.2",
4+
"version": "3.11.3",
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.11.2",
13-
"core-js-compat": "3.11.2",
12+
"core-js": "3.11.3",
13+
"core-js-compat": "3.11.3",
1414
"mkdirp": ">=0.5.5 <1",
1515
"webpack": ">=4.46.0 <5"
1616
},

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.11.2",
4+
"version": "3.11.3",
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.11.2",
4+
"version": "3.11.3",
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.11.2",
4+
"version": "3.11.3",
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.11.2',
7+
version: '3.11.3',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2021 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.11.2",
4+
"version": "3.11.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

0 commit comments

Comments
 (0)