Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 8c7f613

Browse files
committed
0.5.0
1 parent 715512d commit 8c7f613

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
### Unreleased
22

3+
### 0.5.0 - 2018-12-04
4+
5+
* Added `build_command` setting
6+
* Work better without Rustup
7+
* Fix some bugs with VSCode workspaces
8+
9+
310
### 0.4.10 - 2018-08-29
411

512
* Can use an external Rustfmt using `rust.rustfmt_path` option

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rust support for Visual Studio Code
22

33
[![](https://vsmarketplacebadge.apphb.com/version/rust-lang.rust.svg)](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust)
4-
[![Build Status](https://travis-ci.org/rust-lang-nursery/rls-vscode.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/rls-vscode)
4+
[![Build Status](https://travis-ci.org/rust-lang/rls-vscode.svg?branch=master)](https://travis-ci.org/rust-lang/rls-vscode)
55

66
Adds language support for Rust to Visual Studio Code. Supports:
77

@@ -14,7 +14,7 @@ Adds language support for Rust to Visual Studio Code. Supports:
1414
* snippets
1515
* build tasks
1616

17-
Rust support is powered by the [Rust Language Server](https://github.com/rust-lang-nursery/rls)
17+
Rust support is powered by the [Rust Language Server](https://github.com/rust-lang/rls)
1818
(RLS). If you don't have it installed, the extension will install it for you.
1919

2020
This extension is built and maintained by the RLS team, part of the Rust
@@ -24,10 +24,9 @@ a stable, high quality extension that makes best use of the RLS. We aim to
2424
support as many features as possible, but our priority is supporting the
2525
essential features as well as possible.
2626

27-
For support, please file an [issue on the repo](https://github.com/rust-lang-nursery/rls-vscode/issues/new)
28-
or talk to us [on Gitter](https://gitter.im/rust-lang/IDEs) or in #rust-dev-tools
29-
on IRC ([Mozilla servers](https://wiki.mozilla.org/IRC)). There is also some
30-
[troubleshooting and debugging](https://github.com/rust-lang-nursery/rls/blob/master/debugging.md)
27+
For support, please file an [issue on the repo](https://github.com/rust-lang/rls-vscode/issues/new)
28+
or talk to us [on Discord](https://discordapp.com/invite/rust-lang). There is also some
29+
[troubleshooting and debugging](https://github.com/rust-lang/rls/blob/master/debugging.md)
3130
advice.
3231

3332
Contributing code, tests, documentation, and bug reports is appreciated! For
@@ -120,7 +119,7 @@ to `true`. Find it under `File > Preferences > Settings`.
120119
* [Rustup](https://www.rustup.rs/),
121120
* A Rust toolchain (the extension will configure this for you, with
122121
permission),
123-
* RLS (currently `rls-preview`), `rust-src`, and `rust-analysis` components (the
122+
* `rls`, `rust-src`, and `rust-analysis` components (the
124123
extension will install these for you, with permission).
125124

126125

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rust",
33
"displayName": "Rust (rls)",
44
"description": "Rust language support - code completion, Intellisense, refactoring, reformatting, errors, snippets. A client for the Rust Language Server, built by the RLS team.",
5-
"version": "0.4.10",
5+
"version": "0.5.0",
66
"publisher": "rust-lang",
77
"icon": "rust-icon.png",
88
"galleryBanner": {

0 commit comments

Comments
 (0)