Skip to content

Commit 956c01f

Browse files
committed
Update version and change log
1 parent 06fb964 commit 956c01f

File tree

5 files changed

+67
-5
lines changed

5 files changed

+67
-5
lines changed

CHANGELOG.md

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

3+
## 2021.8.1 (6 August 2021)
4+
5+
### Fixes
6+
7+
1. Fix random delay before running python code.
8+
([#16768](https://github.com/Microsoft/vscode-python/issues/16768))
9+
1. Fix the order of default unittest arguments.
10+
(thanks [Nikolay Kondratyev](https://github.com/kondratyev-nv/))
11+
([#16882](https://github.com/Microsoft/vscode-python/issues/16882))
12+
13+
### Thanks
14+
15+
Thanks to the following projects which we fully rely on to provide some of
16+
our features:
17+
18+
- [debugpy](https://pypi.org/project/debugpy/)
19+
- [isort](https://pypi.org/project/isort/)
20+
- [jedi](https://pypi.org/project/jedi/)
21+
and [parso](https://pypi.org/project/parso/)
22+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
23+
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
24+
- [Pylance](https://github.com/microsoft/pylance-release)
25+
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
26+
- [rope](https://pypi.org/project/rope/) (user-installed)
27+
28+
Also thanks to the various projects we provide integrations with which help
29+
make this extension useful:
30+
31+
- Debugging support:
32+
[Django](https://pypi.org/project/Django/),
33+
[Flask](https://pypi.org/project/Flask/),
34+
[gevent](https://pypi.org/project/gevent/),
35+
[Jinja](https://pypi.org/project/Jinja/),
36+
[Pyramid](https://pypi.org/project/pyramid/),
37+
[PySpark](https://pypi.org/project/pyspark/),
38+
[Scrapy](https://pypi.org/project/Scrapy/),
39+
[Watson](https://pypi.org/project/Watson/)
40+
- Formatting:
41+
[autopep8](https://pypi.org/project/autopep8/),
42+
[black](https://pypi.org/project/black/),
43+
[yapf](https://pypi.org/project/yapf/)
44+
- Interpreter support:
45+
[conda](https://conda.io/),
46+
[direnv](https://direnv.net/),
47+
[pipenv](https://pypi.org/project/pipenv/),
48+
[pyenv](https://github.com/pyenv/pyenv),
49+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
50+
[virtualenv](https://pypi.org/project/virtualenv/)
51+
- Linting:
52+
[bandit](https://pypi.org/project/bandit/),
53+
[flake8](https://pypi.org/project/flake8/),
54+
[mypy](https://pypi.org/project/mypy/),
55+
[prospector](https://pypi.org/project/prospector/),
56+
[pylint](https://pypi.org/project/pylint/),
57+
[pydocstyle](https://pypi.org/project/pydocstyle/),
58+
[pylama](https://pypi.org/project/pylama/)
59+
- Testing:
60+
[nose](https://pypi.org/project/nose/),
61+
[pytest](https://pypi.org/project/pytest/),
62+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
63+
64+
And finally thanks to the [Python](https://www.python.org/) development team and
65+
community for creating a fantastic programming language and community to be a
66+
part of!
67+
368
## 2021.8.0 (5 August 2021)
469

570
### Enhancements

news/2 Fixes/16768.md

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

news/2 Fixes/16882.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": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
5-
"version": "2021.8.0",
5+
"version": "2021.8.1",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},

0 commit comments

Comments
 (0)