From f889ded55e7c1b63b95b2d396a75f0a0a2aaed55 Mon Sep 17 00:00:00 2001 From: Duke Date: Mon, 2 Mar 2026 11:51:48 -0500 Subject: [PATCH] Update release process doc --- doc/release-process.md | 6 +++--- util/gen-manpages.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/release-process.md b/doc/release-process.md index 3d1390d9a..ffd8b69ba 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -72,10 +72,10 @@ Install deps on Linux: - A `CLIENT_VERSION_BUILD` of 50 means "actual non-beta release" - Make sure to keep the values in configure.ac and src/clientversion.h the same. The variables are prefixed wth an underscore in configure.ac - Run `./util/gen-manpages.sh`, commit + push results - - hushd must be running so the script can automatically get the correct version number - - There is a hack in the script where you can hardcode a version number if hushd isn't running. - - Comment out the HUSHVER line and uncomment the line above it with a hardcoded version number + - There is a hack in the script where you can hardcode a version number if hushd isn't compiled on this machine + - Comment out the HUSHVER line and uncomment the line above it with a hardcoded version number - PROTIP: Man page creation must be done after updating the version number and recompiling and before Debian package creation + - TODO: How to regenerate html man pages? - Update checkpoints in src/chainparams.cpp via util/checkpoints.pl - Run "./util/checkpoints.pl help" to get example usage - hushd must be running to run this script, since it uses hush-cli to get the data diff --git a/util/gen-manpages.sh b/util/gen-manpages.sh index 844fac739..1fcfae26f 100755 --- a/util/gen-manpages.sh +++ b/util/gen-manpages.sh @@ -14,7 +14,7 @@ HUSHTX=${HUSHTX:-$SRCDIR/hush-tx} # Check if help2man is installed & if not then display error to user and exit [ ! -x "$(command -v help2man)" ] && echo "help2man could not be found" && echo "Please install from your Linux package manager and try again" && echo "On Debian-based systems you can do: apt-get install help2man" && exit 1 -# use this if hushd is not running +# use this if hushd is not compiled #HUSHVER="v3.6.2" HUSHVER=$(./src/hushd --version|head -n1|cut -d' ' -f4|cut -d- -f1)