Skip to content

Commit a05c21c

Browse files
committed
3.13.1
1 parent 2a5a44a commit a05c21c

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.13.1 - 2021.05.29
36
- Overwrites `get-own-property-symbols` third-party `Symbol` polyfill if it's used since it causes a stack overflow, [#774](https://github.com/zloirock/core-js/issues/774)
47
- Added a workaround of possible browser crash on `Object.prototype` accessors methods in WebKit ~ Android 4.0, [#232](https://github.com/zloirock/core-js/issues/232)
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].0
121+
npm install --save [email protected].1
122122
// version without global namespace pollution
123-
npm install --save [email protected].0
123+
npm install --save [email protected].1
124124
// bundled global version
125-
npm install --save [email protected].0
125+
npm install --save [email protected].1
126126
```
127127

128-
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].0) ([minified version](https://unpkg.com/[email protected].0/minified.js)).
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)).
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.13.0",
2+
"version": "3.13.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.13.0",
2+
"version": "3.13.1",
33
"devDependencies": {
44
"@babel/cli": "^7.14.3",
55
"@babel/core": "^7.14.3",

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

0 commit comments

Comments
 (0)