From 1b27473fa8e1144cb03e240ad9a616e168acb6ca Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 5 Nov 2024 17:28:54 +0100 Subject: [PATCH] CHANGES: Rename from .txt to .rst --- CHANGES.txt => CHANGES.rst | 0 DEVELOP.rst | 2 +- devtools/create_tag.sh | 6 +++--- 3 files changed, 4 insertions(+), 4 deletions(-) rename CHANGES.txt => CHANGES.rst (100%) diff --git a/CHANGES.txt b/CHANGES.rst similarity index 100% rename from CHANGES.txt rename to CHANGES.rst diff --git a/DEVELOP.rst b/DEVELOP.rst index 4d33e418..3ca00bc3 100644 --- a/DEVELOP.rst +++ b/DEVELOP.rst @@ -121,7 +121,7 @@ In the release branch: - Update ``__version__`` in ``src/crate/client/__init__.py`` -- Add a section for the new version in the ``CHANGES.txt`` file +- Add a section for the new version in the ``CHANGES.rst`` file - Commit your changes with a message like "prepare release x.y.z" diff --git a/devtools/create_tag.sh b/devtools/create_tag.sh index 1ee0f68d..e75031d9 100755 --- a/devtools/create_tag.sh +++ b/devtools/create_tag.sh @@ -58,11 +58,11 @@ then exit -1 fi -# check if VERSION is in head of CHANGES.txt -REV_NOTE=`grep "[0-9/]\{10\} $VERSION" CHANGES.txt` +# check if VERSION is in head of CHANGES.rst +REV_NOTE=`grep "[0-9/]\{10\} $VERSION" CHANGES.rst` if [ -z "$REV_NOTE" ] then - echo "No notes for revision $VERSION found in CHANGES.txt" + echo "No notes for revision $VERSION found in CHANGES.rst" echo "Aborting." exit -1 fi