Skip to content

Commit 959ad50

Browse files
committed
[FAB-12413] Release fabric 1.3.0 (master cleanup)
Already released from release-1.3 branch. This CR cleans up master to match. Change-Id: Iad0521a41d81d1ef0f96aaf3cad25ec6f2461fa5 Signed-off-by: David Enyeart <enyeart@us.ibm.com>
1 parent 33ff05c commit 959ad50

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ open source architecture; Hyperledger Fabric is your starting point.
2828

2929
## Releases
3030

31+
- [v1.3.0 - October 10, 2018](https://github.com/hyperledger/fabric/releases/tag/v1.3.0)
3132
- [v1.3.0-rc1 - September 24, 2018](https://github.com/hyperledger/fabric/releases/tag/v1.3.0-rc1)
3233
- [v1.2.0 - July 3, 2018](https://github.com/hyperledger/fabric/releases/tag/v1.2.0)
3334
- [v1.2.0-rc1 - June 22, 2018](https://github.com/hyperledger/fabric/releases/tag/v1.2.0-rc1)

docs/source/install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ Fabric Samples and binaries, go ahead and execute the following command:
4141

4242
.. code:: bash
4343
44-
curl -sSL http://bit.ly/2ysbOFE | bash -s 1.3.0-rc1
44+
curl -sSL http://bit.ly/2ysbOFE | bash -s 1.3.0
4545
4646
.. note:: If you want to download Fabric, Fabric-ca and thirdparty Docker images
4747
you must pass the version identifier to the script.
4848

4949
.. code:: bash
5050
5151
curl -sSL http://bit.ly/2ysbOFE | bash -s <fabric> <fabric-ca> <thirdparty>
52-
curl -sSL http://bit.ly/2ysbOFE | bash -s 1.3.0-rc1 1.3.0-rc1 0.4.12
52+
curl -sSL http://bit.ly/2ysbOFE | bash -s 1.3.0 1.3.0 0.4.13
5353
5454
.. note:: If you get an error running the above curl command, you may
5555
have too old a version of curl that does not handle
@@ -62,7 +62,7 @@ Fabric Samples and binaries, go ahead and execute the following command:
6262
https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap.sh
6363

6464
.. note:: You can use the command above for any published version of Hyperledger
65-
Fabric. Simply replace `1.3.0-rc1` with the version identifier
65+
Fabric. Simply replace `1.3.0` with the version identifier
6666
of the version you wish to install.
6767

6868
The command above downloads and executes a bash script

scripts/bootstrap.sh

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

88
# if version not passed in, default to latest released version
9-
export VERSION=1.3.0-rc1
9+
export VERSION=1.3.0
1010
# if ca version not passed in, default to latest released version
1111
export CA_VERSION=$VERSION
1212
# current version of thirdparty images (couchdb, kafka and zookeeper) released
13-
export THIRDPARTY_IMAGE_VERSION=0.4.12
13+
export THIRDPARTY_IMAGE_VERSION=0.4.13
1414
export ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')")
1515
export MARCH=$(uname -m)
1616

@@ -23,8 +23,8 @@ printHelp() {
2323
echo "-s : bypass fabric-samples repo clone"
2424
echo "-b : bypass download of platform-specific binaries"
2525
echo
26-
echo "e.g. bootstrap.sh 1.3.0-rc1 -s"
27-
echo "would download docker images and binaries for version 1.3.0-rc1"
26+
echo "e.g. bootstrap.sh 1.3.0 -s"
27+
echo "would download docker images and binaries for version 1.3.0"
2828
}
2929

3030
dockerFabricPull() {

0 commit comments

Comments
 (0)