Skip to content

Commit db3bbf5

Browse files
committed
updated readme
1 parent 1470e8a commit db3bbf5

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,20 +102,28 @@ For further information and details continue through to the [documentation](http
102102

103103
## [Change Log](https://github.com/DonJayamanne/pythonVSCode/blob/master/CHANGELOG.md)
104104
### 0.5.4
105+
* Fixes to installing missing packages [#544](https://github.com/DonJayamanne/pythonVSCode/issues/544)
106+
* Fixes to indentation of blocks of code [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
107+
* Fixes to debugging of unittests [#543](https://github.com/DonJayamanne/pythonVSCode/issues/543)
108+
* Fixes to extension when a workspace (folder) isn't open [#542](https://github.com/DonJayamanne/pythonVSCode/issues/542)
105109

106110
### Version 0.5.3 (23 November 2016)
107111
* 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)
108112
* Debugging unittests (UnitTest, pytest, nose) [#333](https://github.com/DonJayamanne/pythonVSCode/issues/333)
109113
* Displaying progress for formatting [#327](https://github.com/DonJayamanne/pythonVSCode/issues/327)
110-
* Auto indenting ```else:``` inside ```if``` and similar code blocks [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
111114
* Prefixing new lines with '#' when new lines are added in the middle of a comment string [#365](https://github.com/DonJayamanne/pythonVSCode/issues/365)
112115
* Debugging python modules [#518](https://github.com/DonJayamanne/pythonVSCode/issues/518), [#354](https://github.com/DonJayamanne/pythonVSCode/issues/354)
113116
+ Use new debug configuration ```Python Module```
114117
* Added support for workspace symbols using Exuberant CTags [#138](https://github.com/DonJayamanne/pythonVSCode/issues/138)
115118
+ New command ```Python: Build Workspace Symbols```
119+
* Auto indenting ```else:``` inside ```if``` and similar code blocks [#432](https://github.com/DonJayamanne/pythonVSCode/issues/432)
120+
+ Add the following setting in user ```settings.json```
121+
```jsong
122+
"editor.formatOnType": true,
123+
```
116124
* Added ability for linter to ignore paths or files [#501](https://github.com/DonJayamanne/pythonVSCode/issues/501)
117125
+ Add the following setting in ```settings.json```
118-
```python
126+
```json
119127
"python.linting.ignorePatterns": [
120128
".vscode/*.py",
121129
"**/site-packages/**/*.py"

0 commit comments

Comments
 (0)