Skip to content

Commit 7ad239c

Browse files
FAB-8638 exterminate vestigial 1.0.x references
exterminate any vestigial 1.0.x references in docs Change-Id: I3dc39e3e16c32908d8e630c817dc19e1587d51cb Signed-off-by: Christopher Ferris <chrisfer@us.ibm.com>
1 parent 60c71cb commit 7ad239c

7 files changed

+23
-18
lines changed

docs/source/Fabric-FAQ.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ on its chain.
154154

155155
Differences in Most Recent Releases
156156
-----------------------------------
157-
Q. As part of the v1.0.0 release, what are the highlight differences between v0.6 and v1.0?
157+
Q. Where can I find what are the highlighted differences between releases?
158158

159159
A. The differences between any subsequent releases are provided together with the
160160
`Release Notes <http://hyperledger-fabric.readthedocs.io/en/latest/releases.html>`__.

docs/source/chaincode4ade.rst

+10-8
Original file line numberDiff line numberDiff line change
@@ -429,14 +429,16 @@ should see something similar to following:
429429
430430
docker images
431431
REPOSITORY TAG IMAGE ID CREATED SIZE
432-
hyperledger/fabric-tools latest e09f38f8928d 4 hours ago 1.32 GB
433-
hyperledger/fabric-tools x86_64-1.0.0 e09f38f8928d 4 hours ago 1.32 GB
434-
hyperledger/fabric-orderer latest 0df93ba35a25 4 hours ago 179 MB
435-
hyperledger/fabric-orderer x86_64-1.0.0 0df93ba35a25 4 hours ago 179 MB
436-
hyperledger/fabric-peer latest 533aec3f5a01 4 hours ago 182 MB
437-
hyperledger/fabric-peer x86_64-1.0.0 533aec3f5a01 4 hours ago 182 MB
438-
hyperledger/fabric-ccenv latest 4b70698a71d3 4 hours ago 1.29 GB
439-
hyperledger/fabric-ccenv x86_64-1.0.0 4b70698a71d3 4 hours ago 1.29 GB
432+
hyperledger/fabric-tools latest b7bfddf508bc About an hour ago 1.46GB
433+
hyperledger/fabric-tools x86_64-1.1.0 b7bfddf508bc About an hour ago 1.46GB
434+
hyperledger/fabric-orderer latest ce0c810df36a About an hour ago 180MB
435+
hyperledger/fabric-orderer x86_64-1.1.0 ce0c810df36a About an hour ago 180MB
436+
hyperledger/fabric-peer latest b023f9be0771 About an hour ago 187MB
437+
hyperledger/fabric-peer x86_64-1.1.0 b023f9be0771 About an hour ago 187MB
438+
hyperledger/fabric-javaenv latest 82098abb1a17 About an hour ago 1.52GB
439+
hyperledger/fabric-javaenv x86_64-1.1.0 82098abb1a17 About an hour ago 1.52GB
440+
hyperledger/fabric-ccenv latest c8b4909d8d46 About an hour ago 1.39GB
441+
hyperledger/fabric-ccenv x86_64-1.1.0 c8b4909d8d46 About an hour ago 1.39GB
440442
441443
.. note:: If you retrieved the images through the :ref:`binaries`,
442444
then you will see additional images listed. However, we are only concerned with

docs/source/fabric-sdks.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Hyperledger Fabric SDKs
33

44
Hyperledger Fabric intends to offer a number of SDKs for a wide variety of
55
programming languages. The first two delivered are the Node.js and Java
6-
SDKs. We hope to provide Python and Go SDKs soon after the 1.0.0 release.
6+
SDKs. We hope to provide Python, REST and Go SDKs in a subsequent release.
77

88
* `Hyperledger Fabric Node SDK documentation <https://fabric-sdk-node.github.io/>`__.
99
* `Hyperledger Fabric Java SDK documentation <https://github.com/hyperledger/fabric-sdk-java>`__.

docs/source/getting_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Hyperledger Fabric SDKs
4242

4343
Hyperledger Fabric intends to offer a number of SDKs for a wide variety of
4444
programming languages. The first two delivered SDKs are the Node.js and Java
45-
SDKs. We hope to provide Python and Go SDKs soon after the 1.0.0 release.
45+
SDKs. We hope to provide Python, REST and Go SDKs in a subsequent release.
4646

4747
* `Hyperledger Fabric Node SDK documentation <https://fabric-sdk-node.github.io/>`__.
4848
* `Hyperledger Fabric Java SDK documentation <https://github.com/hyperledger/fabric-sdk-java>`__.

docs/source/samples.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ execute the following commands:
3030
git checkout {TAG} 
3131
3232
.. note:: To ensure the samples are compatible with the version of Fabric binaries you download below,
33-
checkout the samples ``{TAG}`` that matches your Fabric version, for example, v1.1.0-rc1.
33+
checkout the samples ``{TAG}`` that matches your Fabric version, for example, v1.1.0.
3434
To see a list of all fabric-samples tags, use command "git tag".
3535

3636
.. _binaries:
@@ -49,7 +49,7 @@ you will extract the platform-specific binaries:
4949

5050
.. code:: bash
5151
52-
curl -sSL https://goo.gl/6wtTN5 | bash -s 1.1.0-rc1
52+
curl -sSL https://goo.gl/6wtTN5 | bash -s 1.1.0
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 @@ you will extract the platform-specific binaries:
6262
https://github.com/hyperledger/fabric/blob/master/scripts/bootstrap.sh
6363

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

6868
The command above downloads and executes a bash script

docs/source/tutorials.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Tutorials
22
=========
33

4-
We offer four initial tutorials to get you started with Hyperledger Fabric.
4+
We offer tutorials to get you started with Hyperledger Fabric.
55
The first is oriented to the Hyperledger Fabric **application developer**,
66
:doc:`write_first_app`. It takes you through the process of writing your first
77
blockchain application for Hyperledger Fabric using the Hyperledger Fabric
@@ -12,6 +12,9 @@ operators, :doc:`build_network`. This one walks you through the process of
1212
establishing a blockchain network using Hyperledger Fabric and provides
1313
a basic sample application to test it out.
1414

15+
There are also tutorials for updating your channel, :doc:`channel_update_tutorial`, and
16+
upgrading your network to a later version of Hyperledger Fabric, :doc:`upgrading_your_network_tutorial`.
17+
1518
Finally, we offer two chaincode tutorials. One oriented to developers,
1619
:doc:`chaincode4ade`, and the other oriented to operators,
1720
:doc:`chaincode4noah`.

docs/source/upgrading_your_network_tutorial.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Get the newest samples
107107
.. note:: The instructions below pertain to whatever is the most recently
108108
published version of v1.1.x, starting with 1.1.0-rc1. Please substitute
109109
'1.1.x' with the version identifier of the published release that
110-
you are testing. e.g. replace '1.1.x' with '1.1.0-rc1' if you are
110+
you are testing. e.g. replace '1.1.x' with '1.1.0' if you are
111111
currently testing the first release candidate.
112112

113113
Before completing the rest of the tutorial, it's important to get the v1.1.x
@@ -130,7 +130,7 @@ To run the script, issue these commands:
130130

131131
.. code:: bash
132132
133-
# Note, replace '1.1.x' with a specific version, for example '1.1.0-rc1'.
133+
# Note, replace '1.1.x' with a specific version, for example '1.1.0'.
134134
# Don't pass the image flag '-i 1.1.x' if you prefer to default to 'latest' images.
135135
136136
./byfn.sh upgrade -i 1.1.x
@@ -187,7 +187,7 @@ Let’s begin the upgrade process by **bringing down the orderer**:
187187
188188
export LEDGERS_BACKUP=./ledgers-backup
189189
190-
# Note, replace '1.1.x' with a specific version, for example '1.1.0-rc1'.
190+
# Note, replace '1.1.x' with a specific version, for example '1.1.0'.
191191
# Set IMAGE_TAG to 'latest' if you prefer to default to the images tagged 'latest' on your system.
192192
193193
export IMAGE_TAG=`uname -m`-1.1.x

0 commit comments

Comments
 (0)