From 39230978b377e530e2d57599307b22d4b603ae40 Mon Sep 17 00:00:00 2001 From: David Adam Date: Thu, 25 Feb 2021 22:46:24 +0800 Subject: [PATCH] docs: call the CHANGELOG "release notes" --- doc_src/conf.py | 2 +- doc_src/index.rst | 2 +- doc_src/{CHANGELOG.rst => relnotes.rst} | 4 ++-- share/completions/help.fish | 2 +- share/functions/help.fish | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) rename doc_src/{CHANGELOG.rst => relnotes.rst} (52%) diff --git a/doc_src/conf.py b/doc_src/conf.py index ffe7c97d8..8a0f6f18f 100644 --- a/doc_src/conf.py +++ b/doc_src/conf.py @@ -222,7 +222,7 @@ def get_command_description(path, name): man_pages = [ (master_doc, "fish-doc", "fish-shell Documentation", [author], 1), ("tutorial", "fish-tutorial", "fish-shell tutorial", [author], 1), - ("CHANGELOG", "fish-changelog", "fish-shell changelog", [author], 1), + ("relnotes", "fish-releasenotes", "fish-shell release notes", [author], 1), ("completions", "fish-completions", "Writing fish completions", [author], 1), ( "fish_for_bash_users", diff --git a/doc_src/index.rst b/doc_src/index.rst index 49a60ef84..8f300149e 100644 --- a/doc_src/index.rst +++ b/doc_src/index.rst @@ -2118,5 +2118,5 @@ Other help pages completions faq license - CHANGELOG + relnotes fish_for_bash_users diff --git a/doc_src/CHANGELOG.rst b/doc_src/relnotes.rst similarity index 52% rename from doc_src/CHANGELOG.rst rename to doc_src/relnotes.rst index a4be7c557..9601e3518 100644 --- a/doc_src/CHANGELOG.rst +++ b/doc_src/relnotes.rst @@ -1,4 +1,4 @@ -CHANGELOG -######### +Release notes +############# .. include:: ../CHANGELOG.rst diff --git a/share/completions/help.fish b/share/completions/help.fish index e6197cb5b..831e719b9 100644 --- a/share/completions/help.fish +++ b/share/completions/help.fish @@ -101,7 +101,7 @@ complete -c help -x -a tut-why_fish -d 'Why fish?' complete -c help -x -a tut-wildcards -d Wildcards # Other pages -complete -c help -x -a changelog -d "Fish's CHANGELOG" +complete -c help -x -a releasenotes -d "Fish's release notes" complete -c help -x -a completions -d "How to write completions" complete -c help -x -a faq -d "Frequently Asked Questions" complete -c help -x -a fish-for-bash-users -d "Differences from bash" diff --git a/share/functions/help.fish b/share/functions/help.fish index cd83fb572..0fd612d08 100644 --- a/share/functions/help.fish +++ b/share/functions/help.fish @@ -128,8 +128,8 @@ function help --description 'Show help for the fish shell' set fish_help_page "tutorial.html#"(string sub -s 5 -- $fish_help_item | string replace -a -- _ -) case tutorial set fish_help_page "tutorial.html" - case changelog - set fish_help_page changelog.html + case releasenotes + set fish_help_page relnotes.html case completions set fish_help_page completions.html case faq