From 2c61cfb8aad4ee86098484d9bb7380dfb5d37fd5 Mon Sep 17 00:00:00 2001 From: David Enyeart Date: Mon, 16 Dec 2024 16:15:34 -0500 Subject: [PATCH] Updates in main docs and scripts for v2.5.10 release Catching up the install scripts and docs. Signed-off-by: David Enyeart --- docs/source/install.md | 8 ++++---- scripts/bootstrap.sh | 8 ++++---- scripts/install-fabric.sh | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/source/install.md b/docs/source/install.md index 8d4061ca8d5..0c1a30f17e9 100644 --- a/docs/source/install.md +++ b/docs/source/install.md @@ -43,8 +43,8 @@ Run the script with the `-h` option to see the options: ./install-fabric.sh -h Usage: ./install-fabric.sh [-f|--fabric-version ] [-c|--ca-version ] [] ... [] ... : Component to install one or more of d[ocker]|b[inary]|s[amples]. If none specified, all will be installed - -f, --fabric-version: FabricVersion (default: '2.5.9') - -c, --ca-version: Fabric CA Version (default: '1.5.12') + -f, --fabric-version: FabricVersion (default: '2.5.10') + -c, --ca-version: Fabric CA Version (default: '1.5.13') ``` ## Choosing which components @@ -70,10 +70,10 @@ If no arguments are supplied, then the arguments `docker binary samples` are ass By default the latest version of the components are used; these can be altered by using the options `--fabric-version` and `-ca-version`. `-f` and `-c` are the respective short forms. -For example, to download the v2.5.9 binaries, run this command +For example, to download the v2.5.10 binaries, run this command ```bash -./install-fabric.sh --fabric-version 2.5.9 binary +./install-fabric.sh --fabric-version 2.5.10 binary ``` You have completed installing Fabric samples, Docker images, and binaries to your system. diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index eee8f834538..92627dcd834 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,9 +6,9 @@ # # if version not passed in, default to latest released version -VERSION=2.5.9 +VERSION=2.5.10 # if ca version not passed in, default to latest released version -CA_VERSION=1.5.12 +CA_VERSION=1.5.13 REGISTRY=${FABRIC_DOCKER_REGISTRY:-docker.io/hyperledger} @@ -30,8 +30,8 @@ printHelp() { echo "-s : bypass fabric-samples repo clone" echo "-b : bypass download of platform-specific binaries" echo - echo "e.g. bootstrap.sh 2.5.9 1.5.12 -s" - echo "will download docker images and binaries for Fabric v2.5.9 and Fabric CA v1.5.12" + echo "e.g. bootstrap.sh 2.5.10 1.5.13 -s" + echo "will download docker images and binaries for Fabric v2.5.10 and Fabric CA v1.5.13" } # dockerPull() pulls docker images from fabric and chaincode repositories diff --git a/scripts/install-fabric.sh b/scripts/install-fabric.sh index 8422a855610..40fedbd491f 100755 --- a/scripts/install-fabric.sh +++ b/scripts/install-fabric.sh @@ -21,8 +21,8 @@ _arg_comp=('' ) # if version not passed in, default to latest released version # if ca version not passed in, default to latest released version -_arg_fabric_version="2.5.9" -_arg_ca_version="1.5.12" +_arg_fabric_version="2.5.10" +_arg_ca_version="1.5.13" REGISTRY=${FABRIC_DOCKER_REGISTRY:-docker.io/hyperledger} @@ -55,8 +55,8 @@ print_help() { printf 'Usage: %s [-f|--fabric-version ] [-c|--ca-version ] [] ... [] ...\n' "$0" printf '\t%s\n' " Component to install, one or more of docker | binary | samples | podman First letter of component also accepted; If none specified docker | binary | samples is assumed" - printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.9')" - printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.12')" + printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.10')" + printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.13')" }