Skip to content

Commit d7409d1

Browse files
committed
3.15.1
1 parent aa66fb2 commit d7409d1

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.15.1 - 2021.06.23
36
- Fixed cloning of regex through `RegExp` constructor, [#948](https://github.com/zloirock/core-js/issues/948)
47

58
##### 3.15.0 - 2021.06.21

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
119119
### Installation:[](#index)
120120
```
121121
// global version
122-
npm install --save [email protected].0
122+
npm install --save [email protected].1
123123
// version without global namespace pollution
124-
npm install --save [email protected].0
124+
npm install --save [email protected].1
125125
// bundled global version
126-
npm install --save [email protected].0
126+
npm install --save [email protected].1
127127
```
128128

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

131131
### `postinstall` message[](#index)
132132
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.15.0",
2+
"version": "3.15.1",
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.15.0",
2+
"version": "3.15.1",
33
"devDependencies": {
44
"@babel/cli": "^7.14.5",
55
"@babel/core": "^7.14.6",

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

0 commit comments

Comments
 (0)