Skip to content

Commit 2f7786f

Browse files
committed
Bump up version
1 parent bf526a5 commit 2f7786f

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG.md

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

3+
## 0.9.8
4+
5+
* Add option to toggle showing output channel of displaying typechecking result [#109](https://github.com/zjhmale/vscode-idris/issues/109)
6+
* Ignore huge image files when publishing to marketplace [#110](https://github.com/zjhmale/vscode-idris/issues/110)
7+
* Add option to control the max times of continuous typechecking in order to avoid memory leaking without reducing user experience [#111](https://github.com/zjhmale/vscode-idris/issues/111)
8+
* Mock a maybe monad to simplify nullary checking [#112](https://github.com/zjhmale/vscode-idris/issues/112)
9+
310
## 0.9.6
411

512
* Latex completion for `replCompletion` mode [#104](https://github.com/zjhmale/vscode-idris/issues/104)

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,12 @@ The following Visual Studio Code settings along with their *default* values that
6767

6868
```javascript
6969
{
70-
"idris.executablePath": "idris", // The full path to the idris executable.
71-
"idris.hoverMode": "fallback", // Controls the hover behavior. 'info' will display Idris documentation, 'type' will display Idris type, 'fallback' will try 'info' first and fallback to 'type' if we can not get the documentation, and 'none' will disable hover tooltips.
72-
"idris.suggestMode": "allWords" // Controls the auto-completion behavior. 'allWords' will always include all words from the currently opened documentation, 'replCompletion' will get suggestions from Idris REPL process.
73-
"idris.warnPartial": false // Show warning when a function is partial.
74-
"idris.showOutputWhenTypechecking": false //Show output channel when typechecking finished."
70+
"idris.executablePath": "idris", // The full path to the idris executable.
71+
"idris.hoverMode": "fallback", // Controls the hover behavior. 'info' will display Idris documentation, 'type' will display Idris type, 'fallback' will try 'info' first and fallback to 'type' if we can not get the documentation, and 'none' will disable hover tooltips.
72+
"idris.suggestMode": "allWords" // Controls the auto-completion behavior. 'allWords' will always include all words from the currently opened documentation, 'replCompletion' will get suggestions from Idris REPL process.
73+
"idris.warnPartial": false // Show warning when a function is partial.
74+
"idris.showOutputWhenTypechecking": false //Show output channel when typechecking finished.
75+
"idris.numbersOfContinuousTypechecking": 10 //Kill Idris process every N times of continuous typechecking to avoid memory leaking.
7576
}
7677
```
7778

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Idris",
33
"description": "Idris Language Support for Visual Studio Code",
4-
"version": "0.9.6",
4+
"version": "0.9.8",
55
"publisher": "zjhmale",
66
"engines": {
77
"vscode": "^1.8.0"
@@ -129,7 +129,7 @@
129129
"idris.numbersOfContinuousTypechecking": {
130130
"type": "number",
131131
"default": 10,
132-
"description": "Kill Idris process every N times of typechecking to avoid memory leaking."
132+
"description": "Kill Idris process every N times of continuous typechecking to avoid memory leaking."
133133
}
134134
}
135135
},

0 commit comments

Comments
 (0)