Skip to content

Commit

Permalink
Bump Fabric CA to 1.5.7
Browse files Browse the repository at this point in the history
Signed-off-by: Tatsuya Sato <tatsuya.sato.so@hitachi.com>
  • Loading branch information
satota2 authored and denyeart committed Sep 8, 2023
1 parent f895ea2 commit 11660af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Run the script with the `-h` option to see the options:
Usage: ./install-fabric.sh [-f|--fabric-version <arg>] [-c|--ca-version <arg>] <comp-1> [<comp-2>] ... [<comp-n>] ...
<comp>: 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.4')
-c, --ca-version: Fabric CA Version (default: '1.5.6')
-c, --ca-version: Fabric CA Version (default: '1.5.7')
```

## Choosing which components
Expand Down
6 changes: 3 additions & 3 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# if version not passed in, default to latest released version
VERSION=2.5.4
# if ca version not passed in, default to latest released version
CA_VERSION=1.5.6
CA_VERSION=1.5.7

REGISTRY=${FABRIC_DOCKER_REGISTRY:-docker.io/hyperledger}

Expand All @@ -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.4 1.5.6 -s"
echo "will download docker images and binaries for Fabric v2.5.4 and Fabric CA v1.5.6"
echo "e.g. bootstrap.sh 2.5.4 1.5.7 -s"
echo "will download docker images and binaries for Fabric v2.5.4 and Fabric CA v1.5.7"
}

# dockerPull() pulls docker images from fabric and chaincode repositories
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-fabric.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ _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.4"
_arg_ca_version="1.5.6"
_arg_ca_version="1.5.7"

REGISTRY=${FABRIC_DOCKER_REGISTRY:-docker.io/hyperledger}

Expand Down Expand Up @@ -56,7 +56,7 @@ print_help()
printf 'Usage: %s [-f|--fabric-version <arg>] [-c|--ca-version <arg>] <comp-1> [<comp-2>] ... [<comp-n>] ...\n' "$0"
printf '\t%s\n' "<comp> 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.4')"
printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.6')"
printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.7')"
}


Expand Down

0 comments on commit 11660af

Please sign in to comment.