diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/package-lock.json | 2 | ||||
-rw-r--r-- | editors/code/package.json | 17 |
2 files changed, 16 insertions, 3 deletions
diff --git a/editors/code/package-lock.json b/editors/code/package-lock.json index b07964546..575dc7c4a 100644 --- a/editors/code/package-lock.json +++ b/editors/code/package-lock.json | |||
@@ -1,6 +1,6 @@ | |||
1 | { | 1 | { |
2 | "name": "rust-analyzer", | 2 | "name": "rust-analyzer", |
3 | "version": "0.2.20200211-dev", | 3 | "version": "0.2.20200309-nightly", |
4 | "lockfileVersion": 1, | 4 | "lockfileVersion": 1, |
5 | "requires": true, | 5 | "requires": true, |
6 | "dependencies": { | 6 | "dependencies": { |
diff --git a/editors/code/package.json b/editors/code/package.json index 3aaae357a..faf10528d 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -6,7 +6,7 @@ | |||
6 | "private": true, | 6 | "private": true, |
7 | "icon": "icon.png", | 7 | "icon": "icon.png", |
8 | "//": "The real version is in release.yaml, this one just needs to be bigger", | 8 | "//": "The real version is in release.yaml, this one just needs to be bigger", |
9 | "version": "0.2.20200211-dev", | 9 | "version": "0.2.20200309-nightly", |
10 | "publisher": "matklad", | 10 | "publisher": "matklad", |
11 | "repository": { | 11 | "repository": { |
12 | "url": "https://github.com/rust-analyzer/rust-analyzer.git", | 12 | "url": "https://github.com/rust-analyzer/rust-analyzer.git", |
@@ -219,6 +219,19 @@ | |||
219 | } | 219 | } |
220 | } | 220 | } |
221 | }, | 221 | }, |
222 | "rust-analyzer.updates.channel": { | ||
223 | "type": "string", | ||
224 | "enum": [ | ||
225 | "stable", | ||
226 | "nightly" | ||
227 | ], | ||
228 | "default": "stable", | ||
229 | "markdownEnumDescriptions": [ | ||
230 | "`\"stable\"` updates are shipped weekly, they don't contain cutting-edge features from VSCode proposed APIs but have less bugs in general", | ||
231 | "`\"nightly\"` updates are shipped daily, they contain cutting-edge features and latest bug fixes. These releases help us get your feedback very quickly and speed up rust-analyzer development **drastically**" | ||
232 | ], | ||
233 | "markdownDescription": "Choose `\"nightly\"` updates to get the latest features and bug fixes every day. While `\"stable\"` releases occur weekly and don't contain cutting-edge features from VSCode proposed APIs" | ||
234 | }, | ||
222 | "rust-analyzer.updates.askBeforeDownload": { | 235 | "rust-analyzer.updates.askBeforeDownload": { |
223 | "type": "boolean", | 236 | "type": "boolean", |
224 | "default": true, | 237 | "default": true, |
@@ -235,7 +248,7 @@ | |||
235 | "string" | 248 | "string" |
236 | ], | 249 | ], |
237 | "default": null, | 250 | "default": null, |
238 | "description": "Path to rust-analyzer executable (points to bundled binary by default)" | 251 | "description": "Path to rust-analyzer executable (points to bundled binary by default). If this is set, then \"rust-analyzer.updates.channel\" setting is not used" |
239 | }, | 252 | }, |
240 | "rust-analyzer.excludeGlobs": { | 253 | "rust-analyzer.excludeGlobs": { |
241 | "type": "array", | 254 | "type": "array", |