Unnamed repository; edit this file 'description' to name the repository.
Merge #11095
11095: internal: Disable unstable APIs for nightly releases r=lnicola a=lnicola
bors r+
The Marketplace doesn't allow us to publish extensions using these, even as pre-release versions.
Co-authored-by: Laurențiu Nicola <[email protected]>
| -rw-r--r-- | xtask/src/dist.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs index 6e0902c7a0..c05b0de676 100644 --- a/xtask/src/dist.rs +++ b/xtask/src/dist.rs @@ -63,9 +63,7 @@ fn dist_client(version: &str, release_tag: &str, target: &Target) -> Result<()> r#""displayName": "rust-analyzer (nightly)""#, ); } - if !nightly { - patch.replace(r#""enableProposedApi": true,"#, r#""#); - } + patch.replace(r#""enableProposedApi": true,"#, r#""#); patch.commit()?; Ok(()) |