diff --git a/README.md b/README.md index fd4c01695a2..d3cadc8242e 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ open source architecture; Hyperledger Fabric is your starting point. ## Releases - [v2.0.0-alpha - April 9, 2019](https://github.com/hyperledger/fabric/releases/tag/v2.0.0-alpha) +- [v1.4.4 - November 14, 2019](https://github.com/hyperledger/fabric/releases/tag/v1.4.4) - [v1.4.3 - August 26, 2019](https://github.com/hyperledger/fabric/releases/tag/v1.4.3) - [v1.4.2 - July 17, 2019](https://github.com/hyperledger/fabric/releases/tag/v1.4.2) - [v1.4.1 - April 11, 2019](https://github.com/hyperledger/fabric/releases/tag/v1.4.1) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 41ae78664a2..854e9d68776 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,11 +6,11 @@ # # if version not passed in, default to latest released version -VERSION=1.4.3 +VERSION=1.4.4 # if ca version not passed in, default to latest released version -CA_VERSION=1.4.3 +CA_VERSION=1.4.4 # current version of thirdparty images (couchdb, kafka and zookeeper) released -THIRDPARTY_IMAGE_VERSION=0.4.15 +THIRDPARTY_IMAGE_VERSION=0.4.18 ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')") MARCH=$(uname -m) @@ -23,8 +23,8 @@ printHelp() { echo "-s : bypass fabric-samples repo clone" echo "-b : bypass download of platform-specific binaries" echo - echo "e.g. bootstrap.sh 1.4.3 -s" - echo "would download docker images and binaries for version 1.4.3" + echo "e.g. bootstrap.sh 1.4.4 -s" + echo "would download docker images and binaries for version 1.4.4" } # dockerFabricPull() pulls docker images from fabric and chaincode repositories