Skip to content

Commit

Permalink
3.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 19, 2021
1 parent a389780 commit a88734f
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 73 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### 3.8.3 - 2021.01.19
- Fixed some more issues related to FF44- legacy `Iterator`, [#906](https://github.com/zloirock/core-js/issues/906)

##### 3.8.2 - 2021.01.03
Expand Down
126 changes: 63 additions & 63 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
@@ -1,5 +1,5 @@
{
"version": "3.8.2",
"version": "3.8.3",
"packages": [
"packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"version": "3.8.2",
"version": "3.8.3",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
Expand Down
6 changes: 3 additions & 3 deletions packages/core-js-builder/package.json
@@ -1,15 +1,15 @@
{
"name": "core-js-builder",
"description": "core-js builder",
"version": "3.8.2",
"version": "3.8.3",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"main": "index.js",
"dependencies": {
"core-js": "3.8.2",
"core-js-compat": "3.8.2",
"core-js": "3.8.3",
"core-js-compat": "3.8.3",
"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.8.2",
"version": "3.8.3",
"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.8.2",
"version": "3.8.3",
"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.8.2",
"version": "3.8.3",
"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.8.2',
version: '3.8.3',
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.8.2",
"version": "3.8.3",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit a88734f

Please sign in to comment.