From ec81f3e74fa127fc504b1c2249b19ec421ea2a1d Mon Sep 17 00:00:00 2001 From: denyeart Date: Wed, 18 Nov 2020 14:19:03 -0500 Subject: [PATCH] Release commit for v2.3.0 (#2144) Update docs and download script for v2.3.0. Signed-off-by: David Enyeart --- docs/source/install.rst | 4 ++-- scripts/bootstrap.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 1ddab370c10..2fe9ccdc6dd 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -47,12 +47,12 @@ the binaries and images. .. note:: If you want a specific release, pass a version identifier for Fabric and Fabric-CA docker images. The command below demonstrates how to download the latest production releases - - **Fabric v2.2.1** and **Fabric CA v1.4.9** + **Fabric v2.3.0** and **Fabric CA v1.4.9** .. code:: bash curl -sSL https://bit.ly/2ysbOFE | bash -s -- - curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.2.1 1.4.9 + curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.3.0 1.4.9 .. note:: If you get an error running the above curl command, you may have too old a version of curl that does not handle diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index ce30a4afca3..7746f433e42 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,7 +6,7 @@ # # if version not passed in, default to latest released version -VERSION=2.2.1 +VERSION=2.3.0 # if ca version not passed in, default to latest released version CA_VERSION=1.4.9 ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')") @@ -21,8 +21,8 @@ printHelp() { echo "-s : bypass fabric-samples repo clone" echo "-b : bypass download of platform-specific binaries" echo - echo "e.g. bootstrap.sh 2.2.1 1.4.9 -s" - echo "will download docker images and binaries for Fabric v2.2.1 and Fabric CA v1.4.9" + echo "e.g. bootstrap.sh 2.3.0 1.4.9 -s" + echo "will download docker images and binaries for Fabric v2.3.0 and Fabric CA v1.4.9" } # dockerPull() pulls docker images from fabric and chaincode repositories