Skip to content

Commit 74bf894

Browse files
committed
Updates in main docs and scripts for v2.5.14 release
Signed-off-by: Tatsuya Sato <[email protected]>
1 parent 7887caf commit 74bf894

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/source/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ 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.12')
46+
-f, --fabric-version: FabricVersion (default: '2.5.14')
4747
-c, --ca-version: Fabric CA Version (default: '1.5.15')
4848
```
4949

@@ -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.12 binaries, run this command
73+
For example, to download the v2.5.14 binaries, run this command
7474

7575
```bash
76-
./install-fabric.sh --fabric-version 2.5.12 binary
76+
./install-fabric.sh --fabric-version 2.5.14 binary
7777
```
7878

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

scripts/bootstrap.sh

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

88
# if version not passed in, default to latest released version
9-
VERSION=2.5.12
9+
VERSION=2.5.14
1010
# if ca version not passed in, default to latest released version
1111
CA_VERSION=1.5.15
1212

@@ -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.12 1.5.15 -s"
34-
echo "will download docker images and binaries for Fabric v2.5.12 and Fabric CA v1.5.15"
33+
echo "e.g. bootstrap.sh 2.5.14 1.5.15 -s"
34+
echo "will download docker images and binaries for Fabric v2.5.14 and Fabric CA v1.5.15"
3535
}
3636

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

scripts/install-fabric.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ _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.12"
24+
_arg_fabric_version="2.5.14"
2525
_arg_ca_version="1.5.15"
2626

2727
OS=$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')
@@ -56,7 +56,7 @@ print_help()
5656
{
5757
printf 'Usage: %s [-f|--fabric-version <arg>] [-c|--ca-version <arg>] <comp-1> [<comp-2>] ... [<comp-n>] ...\n' "$0"
5858
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"
59-
printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.12')"
59+
printf '\t%s\n' "-f, --fabric-version: FabricVersion (default: '2.5.14')"
6060
printf '\t%s\n' "-c, --ca-version: Fabric CA Version (default: '1.5.15')"
6161
}
6262

0 commit comments

Comments
 (0)