Skip to content

Commit 4bdc869

Browse files
committed
Update change log and version.
1 parent 246675c commit 4bdc869

File tree

8 files changed

+72
-7
lines changed

8 files changed

+72
-7
lines changed

CHANGELOG.md

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

3+
## 2021.9.2 (13 September 2021)
4+
5+
### Fixes
6+
7+
1. Ensure line feeds are changed to CRLF in test messages.
8+
([#17111](https://github.com/Microsoft/vscode-python/issues/17111))
9+
1. Fix for `unittest` ModuleNotFoundError when discovering tests.
10+
([#17363](https://github.com/Microsoft/vscode-python/issues/17363))
11+
1. Ensure we block getting active interpreter on auto-selection.
12+
([#17370](https://github.com/Microsoft/vscode-python/issues/17370))
13+
1. Fix to handle undefined uri in debug in terminal command.
14+
([#17374](https://github.com/Microsoft/vscode-python/issues/17374))
15+
1. Fix for missing buttons for tests when using multiple test folders.
16+
([#17378](https://github.com/Microsoft/vscode-python/issues/17378))
17+
18+
### Thanks
19+
20+
Thanks to the following projects which we fully rely on to provide some of
21+
our features:
22+
23+
- [debugpy](https://pypi.org/project/debugpy/)
24+
- [isort](https://pypi.org/project/isort/)
25+
- [jedi](https://pypi.org/project/jedi/)
26+
and [parso](https://pypi.org/project/parso/)
27+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
28+
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
29+
- [Pylance](https://github.com/microsoft/pylance-release)
30+
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
31+
- [rope](https://pypi.org/project/rope/) (user-installed)
32+
33+
Also thanks to the various projects we provide integrations with which help
34+
make this extension useful:
35+
36+
- Debugging support:
37+
[Django](https://pypi.org/project/Django/),
38+
[Flask](https://pypi.org/project/Flask/),
39+
[gevent](https://pypi.org/project/gevent/),
40+
[Jinja](https://pypi.org/project/Jinja/),
41+
[Pyramid](https://pypi.org/project/pyramid/),
42+
[PySpark](https://pypi.org/project/pyspark/),
43+
[Scrapy](https://pypi.org/project/Scrapy/),
44+
[Watson](https://pypi.org/project/Watson/)
45+
- Formatting:
46+
[autopep8](https://pypi.org/project/autopep8/),
47+
[black](https://pypi.org/project/black/),
48+
[yapf](https://pypi.org/project/yapf/)
49+
- Interpreter support:
50+
[conda](https://conda.io/),
51+
[direnv](https://direnv.net/),
52+
[pipenv](https://pypi.org/project/pipenv/),
53+
[poetry](https://pypi.org/project/poetry/),
54+
[pyenv](https://github.com/pyenv/pyenv),
55+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
56+
[virtualenv](https://pypi.org/project/virtualenv/)
57+
- Linting:
58+
[bandit](https://pypi.org/project/bandit/),
59+
[flake8](https://pypi.org/project/flake8/),
60+
[mypy](https://pypi.org/project/mypy/),
61+
[prospector](https://pypi.org/project/prospector/),
62+
[pylint](https://pypi.org/project/pylint/),
63+
[pydocstyle](https://pypi.org/project/pydocstyle/),
64+
[pylama](https://pypi.org/project/pylama/)
65+
- Testing:
66+
[pytest](https://pypi.org/project/pytest/),
67+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
68+
69+
And finally thanks to the [Python](https://www.python.org/) development team and
70+
community for creating a fantastic programming language and community to be a
71+
part of!
72+
373
## 2021.9.1 (9 September 2021)
474

575
### Fixes

news/2 Fixes/17111.md

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

news/2 Fixes/17363.md

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

news/2 Fixes/17370.md

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

news/2 Fixes/17374.md

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

news/2 Fixes/17378.md

Lines changed: 0 additions & 1 deletion
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": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
5-
"version": "2021.9.1",
5+
"version": "2021.9.2",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},

0 commit comments

Comments
 (0)