Skip to content

Commit 16060ce

Browse files
authored
Update version and change log for point release (#15751)
1 parent fafb73f commit 16060ce

File tree

7 files changed

+71
-7
lines changed

7 files changed

+71
-7
lines changed

CHANGELOG.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
# Changelog
22

3+
## 2021.3.1 (23 March 2021)
4+
5+
### Fixes
6+
7+
1. Fix link to create a new Jupyter notebook in Python start page.
8+
([#15621](https://github.com/Microsoft/vscode-python/issues/15621))
9+
1. Upgrade to latest `jedi-language-server` and use it for python >= 3.6. Use `jedi<0.18` for python 2.7 and <=3.5.
10+
([#15724](https://github.com/Microsoft/vscode-python/issues/15724))
11+
1. Check if Python executable file exists instead of launching the Python process.
12+
([#15725](https://github.com/Microsoft/vscode-python/issues/15725))
13+
1. Fix for Go to definition needs to be pressed twice.
14+
(thanks [djplt](https://github.com/djplt))
15+
([#15727](https://github.com/Microsoft/vscode-python/issues/15727))
16+
17+
### Thanks
18+
19+
Thanks to the following projects which we fully rely on to provide some of
20+
our features:
21+
22+
- [debugpy](https://pypi.org/project/debugpy/)
23+
- [isort](https://pypi.org/project/isort/)
24+
- [jedi](https://pypi.org/project/jedi/)
25+
and [parso](https://pypi.org/project/parso/)
26+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
27+
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
28+
- [Pylance](https://github.com/microsoft/pylance-release)
29+
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
30+
- [rope](https://pypi.org/project/rope/) (user-installed)
31+
32+
Also thanks to the various projects we provide integrations with which help
33+
make this extension useful:
34+
35+
- Debugging support:
36+
[Django](https://pypi.org/project/Django/),
37+
[Flask](https://pypi.org/project/Flask/),
38+
[gevent](https://pypi.org/project/gevent/),
39+
[Jinja](https://pypi.org/project/Jinja/),
40+
[Pyramid](https://pypi.org/project/pyramid/),
41+
[PySpark](https://pypi.org/project/pyspark/),
42+
[Scrapy](https://pypi.org/project/Scrapy/),
43+
[Watson](https://pypi.org/project/Watson/)
44+
- Formatting:
45+
[autopep8](https://pypi.org/project/autopep8/),
46+
[black](https://pypi.org/project/black/),
47+
[yapf](https://pypi.org/project/yapf/)
48+
- Interpreter support:
49+
[conda](https://conda.io/),
50+
[direnv](https://direnv.net/),
51+
[pipenv](https://pypi.org/project/pipenv/),
52+
[pyenv](https://github.com/pyenv/pyenv),
53+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
54+
[virtualenv](https://pypi.org/project/virtualenv/)
55+
- Linting:
56+
[bandit](https://pypi.org/project/bandit/),
57+
[flake8](https://pypi.org/project/flake8/),
58+
[mypy](https://pypi.org/project/mypy/),
59+
[prospector](https://pypi.org/project/prospector/),
60+
[pylint](https://pypi.org/project/pylint/),
61+
[pydocstyle](https://pypi.org/project/pydocstyle/),
62+
[pylama](https://pypi.org/project/pylama/)
63+
- Testing:
64+
[nose](https://pypi.org/project/nose/),
65+
[pytest](https://pypi.org/project/pytest/),
66+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
67+
68+
And finally thanks to the [Python](https://www.python.org/) development team and
69+
community for creating a fantastic programming language and community to be a
70+
part of!
71+
372
## 2021.3.0 (16 March 2021)
473

574
### Enhancements

news/2 Fixes/15621.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/15724.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/15725.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/15727.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python",
33
"displayName": "Python",
44
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
5-
"version": "2021.3.0",
5+
"version": "2021.3.1",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},

0 commit comments

Comments
 (0)