diff --git a/docs/source/install.rst b/docs/source/install.rst index 1ddab370c10..9687c14a54b 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -52,7 +52,7 @@ the binaries and images. .. 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.2.2 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/docs/source/whatsnew.rst b/docs/source/whatsnew.rst index af9c6d3112d..c9ca1135e22 100644 --- a/docs/source/whatsnew.rst +++ b/docs/source/whatsnew.rst @@ -221,6 +221,7 @@ announced in each of the v2.x releases. * `Fabric v2.1.1 release notes `_. * `Fabric v2.2.0 release notes `_. * `Fabric v2.2.1 release notes `_. +* `Fabric v2.2.2 release notes `_. .. Licensed under Creative Commons Attribution 4.0 International License https://creativecommons.org/licenses/by/4.0/ diff --git a/release_notes/v2.2.2.md b/release_notes/v2.2.2.md index 55339e53737..3ae1a9d58dd 100644 --- a/release_notes/v2.2.2.md +++ b/release_notes/v2.2.2.md @@ -1,5 +1,5 @@ -v2.2.2 Release Notes - Date TBD -========================================= +v2.2.2 Release Notes - January 27, 2021 +======================================= Fixes ----- diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 5909abfe90d..7ed4c97274d 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.2.2 # 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,7 +21,7 @@ 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 "e.g. bootstrap.sh 2.2.2 1.4.9 -s" echo "will download docker images and binaries for Fabric v2.2.1 and Fabric CA v1.4.9" }