Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user/readme.adoc → docs/user/manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 5 additions & 1 deletion xtask/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down