about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2020-05-31 13:22:02 +0200
committerAleksey Kladov <aleksey.kladov@gmail.com>2020-05-31 13:22:02 +0200
commit5a2f4548e59981871fe4db2b9ee591b9bf39a46e (patch)
treec226b7548d749bb8ac9089a47d860e975e7fef47
parent09df51dab89340bcf4b8ede95c02c32b0c8eb2bc (diff)
downloadrust-5a2f4548e59981871fe4db2b9ee591b9bf39a46e.tar.gz
rust-5a2f4548e59981871fe4db2b9ee591b9bf39a46e.zip
Rename user/readme.adoc -> user/manual.adoc
-rw-r--r--docs/user/manual.adoc (renamed from docs/user/readme.adoc)2
-rw-r--r--xtask/src/lib.rs6
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/user/readme.adoc b/docs/user/manual.adoc
index 12def732710..f40139804db 100644
--- a/docs/user/readme.adoc
+++ b/docs/user/manual.adoc
@@ -19,7 +19,7 @@ https://microsoft.github.io/language-server-protocol/[Language Server Protocol]
 The LSP allows various code editors, like VS Code, Emacs or Vim, to implement semantic features like completion or goto definition by talking to an external language server process.
 
 To improve this document, send a pull request against
-https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/readme.adoc[this file].
+https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/manual.adoc[this file].
 
 If you have questions about using rust-analyzer, please ask them in the https://users.rust-lang.org/c/ide/14["`IDEs and Editors`"] topic of Rust users forum.
 
diff --git a/xtask/src/lib.rs b/xtask/src/lib.rs
index 2b7a461e568..06043d19f80 100644
--- a/xtask/src/lib.rs
+++ b/xtask/src/lib.rs
@@ -191,7 +191,11 @@ Release: release:{}[]
     let path = changelog_dir.join(format!("{}-changelog-{}.adoc", today, changelog_n));
     fs2::write(&path, &contents)?;
 
-    fs2::copy(project_root().join("./docs/user/readme.adoc"), website_root.join("manual.adoc"))?;
+    for &adoc in ["manual.adoc", "generated_features.adoc"].iter() {
+        let src = project_root().join("./docs/user/").join(adoc);
+        let dst = website_root.join(adoc);
+        fs2::copy(src, dst)?;
+    }
 
     let tags = run!("git tag --list"; echo = false)?;
     let prev_tag = tags.lines().filter(|line| is_release_tag(line)).last().unwrap();