Skip to content

Commit

Permalink
Update change log and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig committed Sep 13, 2021
1 parent 246675c commit 4bdc869
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 7 deletions.
70 changes: 70 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,75 @@
# Changelog

## 2021.9.2 (13 September 2021)

### Fixes

1. Ensure line feeds are changed to CRLF in test messages.
([#17111](https://github.com/Microsoft/vscode-python/issues/17111))
1. Fix for `unittest` ModuleNotFoundError when discovering tests.
([#17363](https://github.com/Microsoft/vscode-python/issues/17363))
1. Ensure we block getting active interpreter on auto-selection.
([#17370](https://github.com/Microsoft/vscode-python/issues/17370))
1. Fix to handle undefined uri in debug in terminal command.
([#17374](https://github.com/Microsoft/vscode-python/issues/17374))
1. Fix for missing buttons for tests when using multiple test folders.
([#17378](https://github.com/Microsoft/vscode-python/issues/17378))

### 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/)
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
- [Pylance](https://github.com/microsoft/pylance-release)
- [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/),
[poetry](https://pypi.org/project/poetry/),
[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:
[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!

## 2021.9.1 (9 September 2021)

### Fixes
Expand Down
1 change: 0 additions & 1 deletion news/2 Fixes/17111.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/17363.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/17370.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/17374.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/17378.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.1",
"version": "2021.9.2",
"featureFlags": {
"usingNewInterpreterStorage": true
},
Expand Down

0 comments on commit 4bdc869

Please sign in to comment.