Skip to content

Commit 7517a18

Browse files
committed
new version
1 parent 2411e7e commit 7517a18

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
## 0.5.3
2-
* Debugging unittests (UnitTest, pytest, nose)
2+
* 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)
3+
* Debugging unittests (UnitTest, pytest, nose) [#333](https://github.com/DonJayamanne/pythonVSCode/issues/333)
4+
* Displaying progress for formatting [#327](https://github.com/DonJayamanne/pythonVSCode/issues/327)
5+
* Auto indenting ```else:``` inside ```if``` and similar code blocks [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
6+
* Prefixing new lines with '#' when new lines are added in the middle of a comment string [#365](https://github.com/DonJayamanne/pythonVSCode/issues/365)
7+
* Debugging python modules [#518](https://github.com/DonJayamanne/pythonVSCode/issues/518), [#354](https://github.com/DonJayamanne/pythonVSCode/issues/354)
8+
+ Use new debug configuration ```Python Module```
9+
* Added support for workspace symbols using Exuberant CTags [#138](https://github.com/DonJayamanne/pythonVSCode/issues/138)
10+
+ New command ```Python: Build Workspace Symbols```
11+
* Added ability for linter to ignore paths or files [#501](https://github.com/DonJayamanne/pythonVSCode/issues/501)
12+
+ Add the following setting in ```settings.json```
13+
```python
14+
"python.linting.ignorePatterns": [
15+
".vscode/*.py",
16+
"**/site-packages/**/*.py"
17+
],
18+
```
19+
* Automatically adding brackets when autocompleting functions/methods [#425](https://github.com/DonJayamanne/pythonVSCode/issues/425)
20+
+ To enable this feature, turn on the setting ```"python.autoComplete.addBrackets": true```
21+
* Running nose tests with the arguments '--with-xunit' and '--xunit-file' [#517](https://github.com/DonJayamanne/pythonVSCode/issues/517)
22+
* Added support for workspaceRootFolderName in settings.json [#525](https://github.com/DonJayamanne/pythonVSCode/pull/525), [#522](https://github.com/DonJayamanne/pythonVSCode/issues/522)
23+
* Added support for workspaceRootFolderName in settings.json [#525](https://github.com/DonJayamanne/pythonVSCode/pull/525), [#522](https://github.com/DonJayamanne/pythonVSCode/issues/522)
24+
* Fixes to running code in terminal [#515](https://github.com/DonJayamanne/pythonVSCode/issues/515)
325

426
## 0.5.2
527
* Fix issue with mypy linter [#505](https://github.com/DonJayamanne/pythonVSCode/issues/505)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ For further information and details continue through to the [documentation](http
104104

105105
### Thanks
106106
* [Shengyu Fu](https://github.com/shengyfu)
107+
* [codebetter](https://github.com/skilliscode)
108+
* [Thijs Damsma](https://github.com/tdamsma)
107109

108110
## Source
109111

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.2",
5+
"version": "0.5.3",
66
"publisher": "donjayamanne",
77
"author": {
88
"name": "Don Jayamanne",

0 commit comments

Comments
 (0)