diff --git a/CHANGELOG.md b/CHANGELOG.md index 54911f022d27..3a94c15e88f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,17 @@ # Changelog -## 2021.8.0-rc (2 August 2021) +## 2021.8.0 (5 August 2021) ### Enhancements -1. Add new getting started page using VS Code's API +1. Add new getting started page using VS Code's API to replace our custom start page. ([#16678](https://github.com/Microsoft/vscode-python/issues/16678)) 1. Replace deprecated vscode-test with @vscode/test-electron for CI. (thanks [iChenLei](https://github.com/iChenLei)) ([#16765](https://github.com/Microsoft/vscode-python/issues/16765)) ### Code Health -1. Sort Settings Alphabetically (thanks [bfarahdel](https://github.com/bfarahdel)) +1. Sort Settings Alphabetically. (thanks [bfarahdel](https://github.com/bfarahdel)) ([#8406](https://github.com/Microsoft/vscode-python/issues/8406)) 1. Changed default language server to `Pylance` for extension development. (thanks [jasleen101010](https://github.com/jasleen101010)) ([#13007](https://github.com/Microsoft/vscode-python/issues/13007)) diff --git a/package-lock.json b/package-lock.json index 035af737a92d..57919a88245f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2021.8.0-rc", + "version": "2021.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -18034,9 +18034,9 @@ } }, "minizlib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.0.tgz", - "integrity": "sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, "requires": { "minipass": "^3.0.0", @@ -18138,15 +18138,15 @@ } }, "tar": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.2.tgz", - "integrity": "sha512-Glo3jkRtPcvpDlAs/0+hozav78yoXKFr+c4wgw62NNMO3oo4AaJdCo21Uu7lcwr55h39W2XD1LMERc64wtbItg==", + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.6.tgz", + "integrity": "sha512-oaWyu5dQbHaYcyZCTfyPpC+VmI62/OM2RTUYavTk1MDr1cwW5Boi3baeYQKiZbY2uSQJGr+iMOzb/JFxLrft+g==", "dev": true, "requires": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^3.0.0", - "minizlib": "^2.1.0", + "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" } diff --git a/package.json b/package.json index 1c2aa8165386..f857cd4676ca 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.", - "version": "2021.8.0-rc", + "version": "2021.8.0", "featureFlags": { "usingNewInterpreterStorage": true },