From 972d752122b69332c26f998ac27897de5ec01d69 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 21 Oct 2019 16:11:09 +0000 Subject: [PATCH] doc: strip ws, shell -> console Signed-off-by: Quentin Young --- doc/developer/frr-release-procedure.rst | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/developer/frr-release-procedure.rst b/doc/developer/frr-release-procedure.rst index a3ead93d72..ff95aa04a9 100644 --- a/doc/developer/frr-release-procedure.rst +++ b/doc/developer/frr-release-procedure.rst @@ -8,14 +8,14 @@ FRR Release Procedure 1. Checkout ``dev/``. - .. code-block:: shell - + .. code-block:: console + git checkout dev/ 2. Create and push a new branch called ``stable/`` based on the ``dev/`` branch. - .. code-block:: shell + .. code-block:: console git checkout -b stable/ git push origin stable/:refs/heads/stable/ @@ -64,7 +64,7 @@ FRR Release Procedure - Verify the changelog format using ``dpkg-parsechangelog``. In the repository root: - .. code-block:: shell + .. code-block:: console dpkg-parsechangelog @@ -81,7 +81,7 @@ FRR Release Procedure Changes: frr (7.3-dev-0) RELEASED; urgency=medium . - * Your Changes Here + * Your Changes Here 5. Change main version number: @@ -98,13 +98,13 @@ FRR Release Procedure 8. Create a git tag for the version: - .. code-block:: shell + .. code-block:: console git tag -a frr- -m "FRRouting Release " 9. Push the commit and new tag. - .. code-block:: shell + .. code-block:: console git push origin stable/:refs/head/stable/ git push origin frr- @@ -145,27 +145,27 @@ FRR Release Procedure 18. Clone the ``frr-www`` repository: - .. code-block:: shell + .. code-block:: console git clone https://github.com/FRRouting/frr-www.git 19. Add a new release announcement, using a previous announcement as template: - .. code-block:: shell + .. code-block:: console cp -launch.md -launch.md Paste the GitHub release announcement text into this document, and **remove line breaks**. In other words, this:: - + This is one continuous sentence that should be rendered on one line - + Needs to be changed to this:: - + This is one continuous sentence that should be rendered on one line - + This is very important otherwise the announcement will be unreadable on the website. -- 2.39.5