Skip to content

Commit ed8e2c0

Browse files
committed
Release 2019.2.2
1 parent e661271 commit ed8e2c0

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
# Changelog
22

33

4-
## 2019.2.1 (27 Feb 2019)
4+
## 2019.2.2 (6 March 2019)
5+
6+
### Fixes
7+
8+
1. If selection is being sent to the Interactive Windows still allow for context menu commands to run selection in terminal or run file in terminal
9+
([#4207](https://github.com/Microsoft/vscode-python/issues/4207))
10+
1. When sending selection to the Interactive Window nothing selected should send the entire line
11+
([#4604](https://github.com/Microsoft/vscode-python/issues/4604))
12+
1. Provide telemetry for when we show the shift-enter banner and if the user clicks yes
13+
([#4636](https://github.com/Microsoft/vscode-python/issues/4636))
14+
15+
## 2019.2.5433 (27 Feb 2019)
516

617
### Fixes
718

news/2 Fixes/4207.md

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

news/2 Fixes/4604.md

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

news/2 Fixes/4636.md

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

news/announce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def git_rm(path):
122122
"""Run git-rm on the path."""
123123
status = subprocess.run(
124124
["git", "rm", os.fspath(path.resolve())],
125-
shell=True,
125+
shell=False,
126126
stdout=subprocess.PIPE,
127127
stderr=subprocess.STDOUT,
128128
)

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, code formatting, refactoring, unit tests, snippets, and more.",
5-
"version": "2019.2.1",
5+
"version": "2019.2.2",
66
"languageServerVersion": "0.1.80",
77
"publisher": "ms-python",
88
"author": {

0 commit comments

Comments
 (0)