Skip to content

Commit

Permalink
3.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 23, 2021
1 parent 5d78d50 commit 8f22e98
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### 3.20.1 - 2021.12.23
- Fixed the order of calling reactions of already fulfilled / rejected promises in `Promise.prototype.then`, [#1026](https://github.com/zloirock/core-js/issues/1026)
- Fixed possible memory leaking in specific promise chains
- Fixed some missed dependencies of entries
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -175,14 +175,14 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save core-js@3.20.0
npm install --save core-js@3.20.1
// version without global namespace pollution
npm install --save core-js-pure@3.20.0
npm install --save core-js-pure@3.20.1
// bundled global version
npm install --save core-js-bundle@3.20.0
npm install --save core-js-bundle@3.20.1
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.0) ([minified version](https://unpkg.com/core-js-bundle@3.20.0/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.1) ([minified version](https://unpkg.com/core-js-bundle@3.20.1/minified.js)).

### `postinstall` message[](#index)
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:
Expand Down
2 changes: 1 addition & 1 deletion deno/corejs/README.md
Expand Up @@ -24,7 +24,7 @@

*Example*:
```js
import 'https://deno.land/x/corejs@v3.20.0/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.20.1/index.js'; // <- at the top of your entry point

Object.hasOwn({ foo: 42 }, 'foo'); // => true

Expand Down
4 changes: 2 additions & 2 deletions deno/corejs/index.js
@@ -1,5 +1,5 @@
/**
* core-js 3.20.0
* core-js 3.20.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2021 Denis Pushkarev (zloirock.ru)
Expand Down Expand Up @@ -868,7 +868,7 @@ var store = __webpack_require__(33);
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.20.0',
version: '3.20.1',
mode: IS_PURE ? 'pure' : 'global',
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
});
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,5 +1,5 @@
{
"version": "3.20.0",
"version": "3.20.1",
"packages": [
"packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"version": "3.20.0",
"version": "3.20.1",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/core-js-builder/package.json
@@ -1,16 +1,16 @@
{
"name": "core-js-builder",
"description": "core-js builder",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git",
"directory": "packages/core-js-builder"
},
"main": "index.js",
"dependencies": {
"core-js": "3.20.0",
"core-js-compat": "3.20.0",
"core-js": "3.20.1",
"core-js-compat": "3.20.1",
"mkdirp": ">=0.5.5 <1",
"webpack": ">=4.46.0 <5"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-bundle/package.json
@@ -1,7 +1,7 @@
{
"name": "core-js-bundle",
"description": "Standard library",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-compat/package.json
@@ -1,7 +1,7 @@
{
"name": "core-js-compat",
"description": "core-js compat",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git",
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-pure/package.json
@@ -1,7 +1,7 @@
{
"name": "core-js-pure",
"description": "Standard library",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/internals/shared.js
Expand Up @@ -4,7 +4,7 @@ var store = require('../internals/shared-store');
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.20.0',
version: '3.20.1',
mode: IS_PURE ? 'pure' : 'global',
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
});
2 changes: 1 addition & 1 deletion packages/core-js/package.json
@@ -1,7 +1,7 @@
{
"name": "core-js",
"description": "Standard library",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit 8f22e98

Please sign in to comment.