Skip to content

Commit 29a4c33

Browse files
committed
Changelog #188
1 parent d4e00d0 commit 29a4c33

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

manual.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -933,17 +933,17 @@ For example:
933933
More about `when` clause contexts https://code.visualstudio.com/docs/getstarted/keybindings#_when-clause-contexts[here].
934934

935935
==== Setting runnable environment variables
936-
You can use "rust-analyzer.runnableEnv" setting to define runnable environment-specific substitution variables.
936+
You can use "rust-analyzer.runnables.extraEnv" setting to define runnable environment-specific substitution variables.
937937
The simplest way for all runnables in a bunch:
938938
```jsonc
939-
"rust-analyzer.runnableEnv": {
939+
"rust-analyzer.runnables.extraEnv": {
940940
"RUN_SLOW_TESTS": "1"
941941
}
942942
```
943943

944944
Or it is possible to specify vars more granularly:
945945
```jsonc
946-
"rust-analyzer.runnableEnv": [
946+
"rust-analyzer.runnables.extraEnv": [
947947
{
948948
// "mask": null, // null mask means that this rule will be applied for all runnables
949949
env: {
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
= Changelog #188
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:ff485b63bfd9a44ab2a0dbe88dcf58b79496f1ac[] +
7+
Release: release:2023-07-03[] (`v0.3.1575`)
8+
9+
== New Features
10+
11+
* pr:15136[] (first contribution) drop matching brace key binding.
12+
* pr:15185[] bump `chalk`.
13+
* pr:15151[] update VS Code extension dependencies and require 1.78.
14+
15+
== Fixes
16+
17+
* pr:15148[] fix `self` and `super` path resolution in block modules.
18+
* pr:15157[] fix runnable detection for `#[tokio::test]`.
19+
* pr:15173[] fix data layout of reference to nested unsized structs.
20+
* pr:15184[] disable MIR interpreter for targets with different pointer size from host.
21+
* pr:15168[] fix MIR `realloc` allocating a smaller destination.
22+
* pr:15189[] fix overflow checking in shift operator.
23+
* pr:15194[] fix layout of SIMD types and respect alignment in MIR interpreter.
24+
* pr:15101[], pr:15177[], pr:15180[] check client `workspace.workspaceEdit.resourceOperations` capability.
25+
* pr:15138[] rename `runnableEnv` to `runnables.extraEnv`.
26+
27+
== Internal Improvements
28+
29+
* pr:15030[], pr:15163[] (first contribution) run metrics on parallel.
30+
* pr:15172[] support `#[derive_const(Trait)]`.
31+
* pr:15140[] add comment explaining why `HasSource::source()` returns `Option`.
32+
* pr:15161[] add `library` fixture meta.
33+
* pr:15175[] drop `cross-env` npm dep.
34+
* pr:15174[] switch to `@vscode/vsce`.
35+
* pr:15153[] clean up Code extension `activationEvents`.
36+
* pr:15154[] use `@tsconfig/strictest` for type checking rules.
37+
* pr:15159[] enable `noImplicitOverride`.
38+
* pr:15169[] use anonymous lifetime where possible.
39+
* pr:15142[] rename crates after removing libs from workspace.
40+
* pr:15195[] don't specify `proc-macro-test` version.

0 commit comments

Comments
 (0)