Skip to content

Commit 31af637

Browse files
authored
Updates in main docs and scripts for v2.5.11 release (hyperledger#5142)
Update docs for v2.5.11 and CA v1.5.15. Signed-off-by: David Enyeart <[email protected]>
1 parent 72cf241 commit 31af637

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/source/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Run the script with the `-h` option to see the options:
4343
./install-fabric.sh -h
4444
Usage: ./install-fabric.sh [-f|--fabric-version <arg>] [-c|--ca-version <arg>] <comp-1> [<comp-2>] ... [<comp-n>] ...
4545
<comp>: Component to install one or more of d[ocker]|b[inary]|s[amples]. If none specified, all will be installed
46-
-f, --fabric-version: FabricVersion (default: '2.5.10')
47-
-c, --ca-version: Fabric CA Version (default: '1.5.13')
46+
-f, --fabric-version: FabricVersion (default: '2.5.11')
47+
-c, --ca-version: Fabric CA Version (default: '1.5.15')
4848
```
4949

5050
## Choosing which components
@@ -70,10 +70,10 @@ If no arguments are supplied, then the arguments `docker binary samples` are ass
7070

7171
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.
7272

73-
For example, to download the v2.5.10 binaries, run this command
73+
For example, to download the v2.5.11 binaries, run this command
7474

7575
```bash
76-
./install-fabric.sh --fabric-version 2.5.10 binary
76+
./install-fabric.sh --fabric-version 2.5.11 binary
7777
```
7878

7979
You have completed installing Fabric samples, Docker images, and binaries to your system.

scripts/bootstrap.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#
77

88
# if version not passed in, default to latest released version
9-
VERSION=2.5.10
9+
VERSION=2.5.11
1010
# if ca version not passed in, default to latest released version
11-
CA_VERSION=1.5.13
11+
CA_VERSION=1.5.15
1212

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

@@ -30,8 +30,8 @@ printHelp() {
3030
echo "-s : bypass fabric-samples repo clone"
3131
echo "-b : bypass download of platform-specific binaries"
3232
echo
33-
echo "e.g. bootstrap.sh 2.5.10 1.5.13 -s"
34-
echo "will download docker images and binaries for Fabric v2.5.10 and Fabric CA v1.5.13"
33+
echo "e.g. bootstrap.sh 2.5.11 1.5.15 -s"
34+
echo "will download docker images and binaries for Fabric v2.5.11 and Fabric CA v1.5.15"
3535
}
3636

3737
# dockerPull() pulls docker images from fabric and chaincode repositories

scripts/install-fabric.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ _arg_comp=('' )
2121

2222
# if version not passed in, default to latest released version
2323
# if ca version not passed in, default to latest released version
24-
_arg_fabric_version="2.5.10"
25-
_arg_ca_version="1.5.13"
24+
_arg_fabric_version="2.5.11"
25+
_arg_ca_version="1.5.15"
2626

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

@@ -55,8 +55,8 @@ print_help()
5555
{
5656
printf 'Usage: %s [-f|--fabric-version <arg>] [-c|--ca-version <arg>] <comp-1> [<comp-2>] ... [<comp-n>] ...\n' "$0"
5757
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"
58-
printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.10')"
59-
printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.13')"
58+
printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.11')"
59+
printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.15')"
6060
}
6161

6262

0 commit comments

Comments
 (0)