From b39807f787a38c9e1c19ca647070b3f7def79ff4 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Fri, 5 Jun 2020 15:01:24 -0700 Subject: [PATCH] Update version and changelog for point release --- CHANGELOG.md | 68 ++++++++++++++++++++++++++++++++++++ news/1 Enhancements/10790.md | 1 - news/2 Fixes/11943.md | 1 - news/3 Code Health/11597.md | 1 - package-lock.json | 2 +- package.json | 2 +- 6 files changed, 70 insertions(+), 5 deletions(-) delete mode 100644 news/1 Enhancements/10790.md delete mode 100644 news/2 Fixes/11943.md delete mode 100644 news/3 Code Health/11597.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a91b3dcc53a..347a219b23fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,73 @@ # Changelog +## 2020.5.2 (8 June 2020) + +### Fixes + +1. Ensure user cannot belong to all experiments in an experiment group. + ([#11943](https://github.com/Microsoft/vscode-python/issues/11943)) + +### Code Health + +1. Integrate VS Code experiment framework in the extension. + ([#10790](https://github.com/Microsoft/vscode-python/issues/10790)) +1. Update telemetry on errors and exceptions to use [vscode-extension-telemetry](https://www.npmjs.com/package/vscode-extension-telemetry). + ([#11597](https://github.com/Microsoft/vscode-python/issues/11597)) + +### Thanks + +Thanks to the following projects which we fully rely on to provide some of +our features: + +- [debugpy](https://pypi.org/project/debugpy/) +- [isort](https://pypi.org/project/isort/) +- [jedi](https://pypi.org/project/jedi/) + and [parso](https://pypi.org/project/parso/) +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) +- [ptvsd](https://pypi.org/project/ptvsd/) +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) +- [rope](https://pypi.org/project/rope/) (user-installed) + +Also thanks to the various projects we provide integrations with which help +make this extension useful: + +- Debugging support: + [Django](https://pypi.org/project/Django/), + [Flask](https://pypi.org/project/Flask/), + [gevent](https://pypi.org/project/gevent/), + [Jinja](https://pypi.org/project/Jinja/), + [Pyramid](https://pypi.org/project/pyramid/), + [PySpark](https://pypi.org/project/pyspark/), + [Scrapy](https://pypi.org/project/Scrapy/), + [Watson](https://pypi.org/project/Watson/) +- Formatting: + [autopep8](https://pypi.org/project/autopep8/), + [black](https://pypi.org/project/black/), + [yapf](https://pypi.org/project/yapf/) +- Interpreter support: + [conda](https://conda.io/), + [direnv](https://direnv.net/), + [pipenv](https://pypi.org/project/pipenv/), + [pyenv](https://github.com/pyenv/pyenv), + [venv](https://docs.python.org/3/library/venv.html#module-venv), + [virtualenv](https://pypi.org/project/virtualenv/) +- Linting: + [bandit](https://pypi.org/project/bandit/), + [flake8](https://pypi.org/project/flake8/), + [mypy](https://pypi.org/project/mypy/), + [prospector](https://pypi.org/project/prospector/), + [pylint](https://pypi.org/project/pylint/), + [pydocstyle](https://pypi.org/project/pydocstyle/), + [pylama](https://pypi.org/project/pylama/) +- Testing: + [nose](https://pypi.org/project/nose/), + [pytest](https://pypi.org/project/pytest/), + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) + +And finally thanks to the [Python](https://www.python.org/) development team and +community for creating a fantastic programming language and community to be a +part of! + ## 2020.5.1 (19 May 2020) ### Fixes diff --git a/news/1 Enhancements/10790.md b/news/1 Enhancements/10790.md deleted file mode 100644 index 1da59c36dc77..000000000000 --- a/news/1 Enhancements/10790.md +++ /dev/null @@ -1 +0,0 @@ -Integrate VS Code experiment framework in the extension. diff --git a/news/2 Fixes/11943.md b/news/2 Fixes/11943.md deleted file mode 100644 index 32ba8b829d59..000000000000 --- a/news/2 Fixes/11943.md +++ /dev/null @@ -1 +0,0 @@ -Ensure user cannot belong to all experiments in an experiment group. diff --git a/news/3 Code Health/11597.md b/news/3 Code Health/11597.md deleted file mode 100644 index 4d5ba9f74640..000000000000 --- a/news/3 Code Health/11597.md +++ /dev/null @@ -1 +0,0 @@ -Update telemetry on errors and exceptions to use [vscode-extension-telemetry](https://www.npmjs.com/package/vscode-extension-telemetry). diff --git a/package-lock.json b/package-lock.json index a3a2300e5f2b..cd2dc313eb45 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2020.5.1", + "version": "2020.5.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index dd7ca7b54133..db9a7e2f585a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.", - "version": "2020.5.1", + "version": "2020.5.2", "featureFlags": { "usingNewInterpreterStorage": true },