Skip to content

Commit d4ecfce

Browse files
committed
3.16.1
1 parent 4555d02 commit d4ecfce

File tree

12 files changed

+20
-17
lines changed

12 files changed

+20
-17
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.16.1 - 2021.08.09
36
- Fixed microtask implementation on iOS Pebble, [#967](https://github.com/zloirock/core-js/issues/967)
47
- Fixed some entry points
58
- Improved old Safari compat data

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
141141
### Installation:[](#index)
142142
```
143143
// global version
144-
npm install --save [email protected].0
144+
npm install --save [email protected].1
145145
// version without global namespace pollution
146-
npm install --save [email protected].0
146+
npm install --save [email protected].1
147147
// bundled global version
148-
npm install --save [email protected].0
148+
npm install --save [email protected].1
149149
```
150150

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

153153
### `postinstall` message[](#index)
154154
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:

deno/corejs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/[email protected].0/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/[email protected].1/index.js'; // <- at the top of your entry point
2828

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

deno/corejs/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* core-js 3.16.0
2+
* core-js 3.16.1
33
* https://github.com/zloirock/core-js
44
* License: http://rock.mit-license.org
55
* © 2021 Denis Pushkarev (zloirock.ru)
@@ -686,7 +686,7 @@ var store = __webpack_require__(26);
686686
(module.exports = function (key, value) {
687687
return store[key] || (store[key] = value !== undefined ? value : {});
688688
})('versions', []).push({
689-
version: '3.16.0',
689+
version: '3.16.1',
690690
mode: IS_PURE ? 'pure' : 'global',
691691
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
692692
});

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.16.0",
2+
"version": "3.16.1",
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.16.0",
2+
"version": "3.16.1",
33
"devDependencies": {
44
"@babel/cli": "^7.14.8",
55
"@babel/core": "^7.15.0",

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.16.0",
4+
"version": "3.16.1",
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.16.0",
13-
"core-js-compat": "3.16.0",
12+
"core-js": "3.16.1",
13+
"core-js-compat": "3.16.1",
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.16.0",
4+
"version": "3.16.1",
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.16.0",
4+
"version": "3.16.1",
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.16.0",
4+
"version": "3.16.1",
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.16.0',
7+
version: '3.16.1',
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.16.0",
4+
"version": "3.16.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)