🌐 AI搜索 & 代理 主页
Skip to content

Commit 73952db

Browse files
committed
3.8.0
1 parent 354ca41 commit 73952db

File tree

8 files changed

+75
-75
lines changed

8 files changed

+75
-75
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Changelog
2-
##### Unreleased
2+
##### 3.8.0 - 2020.11.26
33
- Added [relative indexing method stage 3 proposal](https://github.com/tc39/proposal-relative-indexing-method)
44
- `Array#at`
55
- `%TypedArray%#at`

README.md

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"
88
},
99
"main": "index.js",
1010
"dependencies": {
11-
"core-js": "3.7.0",
12-
"core-js-compat": "3.7.0",
11+
"core-js": "3.8.0",
12+
"core-js-compat": "3.8.0",
1313
"mkdirp": ">=0.5.5 <1",
1414
"webpack": ">=4.44.2 <5"
1515
},

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

0 commit comments

Comments
 (0)