You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
### Version 0.5.6 (16 January 2017)
2
+
* Added support for Python 3.6 [#646](https://github.com/DonJayamanne/pythonVSCode/issues/646), [#631](https://github.com/DonJayamanne/pythonVSCode/issues/631), [#619](https://github.com/DonJayamanne/pythonVSCode/issues/619), [#613](https://github.com/DonJayamanne/pythonVSCode/issues/613)
3
+
* Autodetect in python path in virtual environments [#353](https://github.com/DonJayamanne/pythonVSCode/issues/353)
4
+
* Add syntax highlighting of code samples in hover defintion [#555](https://github.com/DonJayamanne/pythonVSCode/issues/555)
5
+
* Launch REPL for currently selected interpreter [#560](https://github.com/DonJayamanne/pythonVSCode/issues/560)
6
+
* Fixes to debugging of modules [#589](https://github.com/DonJayamanne/pythonVSCode/issues/589)
7
+
* Reminder to install jedi and ctags in Quick Start [#642](https://github.com/DonJayamanne/pythonVSCode/pull/642)
8
+
* Improvements to Symbol Provider [#622](https://github.com/DonJayamanne/pythonVSCode/pull/622)
9
+
* Minor fixes [#627](https://github.com/DonJayamanne/pythonVSCode/pull/627)
10
+
1
11
### Version 0.5.5 (25 November 2016)
2
12
* Fixes to debugging of unittests (nose and pytest) [#543](https://github.com/DonJayamanne/pythonVSCode/issues/543)
3
13
* Fixes to debugging of Django [#546](https://github.com/DonJayamanne/pythonVSCode/issues/546)
Copy file name to clipboardExpand all lines: README.md
+12-39Lines changed: 12 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Python
2
2
3
-
An extension with rich support for the [Python language](https://www.python.org/), with features including the following and more:
3
+
An extension with rich support for the [Python language](https://www.python.org/) (_including Python 3.6_), with features including the following and more:
4
4
* Linting ([Prospector](https://pypi.io/project/prospector/), [Pylint](https://pypi.io/project/pylint/), [pycodestyle](https://pypi.io/project/pycodestyle/)/Pep8, [Flake8](https://pypi.io/project/flake8/), [pylama](https://github.com/klen/pylama), [pydocstyle](https://pypi.io/project/pydocstyle/) with config files and plugins)
5
5
* Intellisense (autocompletion with support for PEP-0484)
6
6
* PySpark and Scientific tools (Jupyter/IPython)
@@ -104,44 +104,15 @@ For further information and details continue through to the [documentation](http
* Fixes to debugging of unittests (nose and pytest) [#543](https://github.com/DonJayamanne/pythonVSCode/issues/543)
109
-
* Fixes to debugging of Django [#546](https://github.com/DonJayamanne/pythonVSCode/issues/546)
110
-
111
-
### Version 0.5.4 (24 November 2016)
112
-
* Fixes to installing missing packages [#544](https://github.com/DonJayamanne/pythonVSCode/issues/544)
113
-
* Fixes to indentation of blocks of code [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
114
-
* Fixes to debugging of unittests [#543](https://github.com/DonJayamanne/pythonVSCode/issues/543)
115
-
* Fixes to extension when a workspace (folder) isn't open [#542](https://github.com/DonJayamanne/pythonVSCode/issues/542)
116
-
117
-
### Version 0.5.3 (23 November 2016)
118
-
* Added support for [PySpark](http://spark.apache.org/docs/0.9.0/python-programming-guide.html)[#539](https://github.com/DonJayamanne/pythonVSCode/pull/539), [#540](https://github.com/DonJayamanne/pythonVSCode/pull/540)
* Displaying progress for formatting [#327](https://github.com/DonJayamanne/pythonVSCode/issues/327)
121
-
* Prefixing new lines with '#' when new lines are added in the middle of a comment string [#365](https://github.com/DonJayamanne/pythonVSCode/issues/365)
* Added support for workspace symbols using Exuberant CTags [#138](https://github.com/DonJayamanne/pythonVSCode/issues/138)
125
-
+ New command ```Python: Build Workspace Symbols```
126
-
* Auto indenting ```else:``` inside ```if``` and similar code blocks [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
127
-
+ Add the following setting in user ```settings.json```
128
-
```jsong
129
-
"editor.formatOnType": true,
130
-
```
131
-
* Added ability for linter to ignore paths or files [#501](https://github.com/DonJayamanne/pythonVSCode/issues/501)
132
-
+ Add the following setting in ```settings.json```
133
-
```json
134
-
"python.linting.ignorePatterns": [
135
-
".vscode/*.py",
136
-
"**/site-packages/**/*.py"
137
-
],
138
-
```
139
-
* Automatically adding brackets when autocompleting functions/methods [#425](https://github.com/DonJayamanne/pythonVSCode/issues/425)
140
-
+ To enable this feature, turn on the setting ```"python.autoComplete.addBrackets": true```
141
-
* Running nose tests with the arguments '--with-xunit' and '--xunit-file' [#517](https://github.com/DonJayamanne/pythonVSCode/issues/517)
142
-
* Added support for workspaceRootFolderName in settings.json [#525](https://github.com/DonJayamanne/pythonVSCode/pull/525), [#522](https://github.com/DonJayamanne/pythonVSCode/issues/522)
143
-
* Added support for workspaceRootFolderName in settings.json [#525](https://github.com/DonJayamanne/pythonVSCode/pull/525), [#522](https://github.com/DonJayamanne/pythonVSCode/issues/522)
144
-
* Fixes to running code in terminal [#515](https://github.com/DonJayamanne/pythonVSCode/issues/515)
107
+
### Version 0.5.5 (16 January 2017)
108
+
* Added support for Python 3.6 [#646](https://github.com/DonJayamanne/pythonVSCode/issues/646), [#631](https://github.com/DonJayamanne/pythonVSCode/issues/631), [#619](https://github.com/DonJayamanne/pythonVSCode/issues/619), [#613](https://github.com/DonJayamanne/pythonVSCode/issues/613)
109
+
* Autodetect in python path in virtual environments [#353](https://github.com/DonJayamanne/pythonVSCode/issues/353)
110
+
* Add syntax highlighting of code samples in hover defintion [#555](https://github.com/DonJayamanne/pythonVSCode/issues/555)
111
+
* Launch REPL for currently selected interpreter [#560](https://github.com/DonJayamanne/pythonVSCode/issues/560)
112
+
* Fixes to debugging of modules [#589](https://github.com/DonJayamanne/pythonVSCode/issues/589)
113
+
* Reminder to install jedi and ctags in Quick Start [#642](https://github.com/DonJayamanne/pythonVSCode/pull/642)
114
+
* Improvements to Symbol Provider [#622](https://github.com/DonJayamanne/pythonVSCode/pull/622)
115
+
* Minor fixes [#627](https://github.com/DonJayamanne/pythonVSCode/pull/627)
145
116
146
117
### Thanks
147
118
*[Thijs Damsma](https://github.com/tdamsma)
@@ -153,6 +124,8 @@ For further information and details continue through to the [documentation](http
0 commit comments