Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e63b696

Browse files
committed
updated version to 0.5.6
1 parent d2be9ce commit e63b696

File tree

4 files changed

+33
-48
lines changed

4 files changed

+33
-48
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
111
### Version 0.5.5 (25 November 2016)
212
* Fixes to debugging of unittests (nose and pytest) [#543](https://github.com/DonJayamanne/pythonVSCode/issues/543)
313
* Fixes to debugging of Django [#546](https://github.com/DonJayamanne/pythonVSCode/issues/546)

ISSUE_TEMPLATE.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ VS Code version:
33
Python Extension version:
44
Python Version:
55
OS and version:
6+
7+
## Actual behavior
8+
9+
## Expected behavior
10+
11+
## Steps to reproduce:
12+
-
13+
-
14+
15+
## Settings
616
Your launch.json (if dealing with debugger issues):
717
```json
818
```
@@ -16,11 +26,3 @@ Output from ```Python``` output panel
1626
Output from ```Console window``` (Help->Developer Tools menu)
1727
```
1828
```
19-
20-
## Actual behavior
21-
22-
## Expected behavior
23-
24-
## Steps to reproduce:
25-
-
26-
-

README.md

Lines changed: 12 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python
22

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:
44
* 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)
55
* Intellisense (autocompletion with support for PEP-0484)
66
* PySpark and Scientific tools (Jupyter/IPython)
@@ -104,44 +104,15 @@ For further information and details continue through to the [documentation](http
104104
## [Roadmap](https://donjayamanne.github.io/pythonVSCodeDocs/docs/roadmap/)
105105

106106
## [Change Log](https://github.com/DonJayamanne/pythonVSCode/blob/master/CHANGELOG.md)
107-
### Version 0.5.5 (25 November 2016)
108-
* 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)
119-
* Debugging unittests (UnitTest, pytest, nose) [#333](https://github.com/DonJayamanne/pythonVSCode/issues/333)
120-
* 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)
122-
* Debugging python modules [#518](https://github.com/DonJayamanne/pythonVSCode/issues/518), [#354](https://github.com/DonJayamanne/pythonVSCode/issues/354)
123-
+ Use new debug configuration ```Python Module```
124-
* 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)
145116

146117
### Thanks
147118
* [Thijs Damsma](https://github.com/tdamsma)
@@ -153,6 +124,8 @@ For further information and details continue through to the [documentation](http
153124
* [Luca Mussi](https://github.com/splendido)
154125
* [Shengyu Fu](https://github.com/shengyfu)
155126
* [codebetter](https://github.com/skilliscode)
127+
* [Shay Palachy](https://github.com/shaypal5)
128+
* [Patryk Zawadzki](https://github.com/patrys)
156129

157130
## Source
158131

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, Data Science (with Jupyter), PySpark and more.",
5-
"version": "0.5.5",
5+
"version": "0.5.6",
66
"publisher": "donjayamanne",
77
"author": {
88
"name": "Don Jayamanne",

0 commit comments

Comments
 (0)