about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--xtask/src/dist.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index 6e0902c7a07..c05b0de676a 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(())