Skip to content

Commit

Permalink
Merge branch 'v4.0.0' into 'master'
Browse files Browse the repository at this point in the history
Updated version strings and removed jessie

See merge request zcash-docs/zcash-docs!200
  • Loading branch information
lindanlee committed Sep 2, 2020
2 parents 53fbe47 + 164f5ac commit e73f0ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 19 deletions.
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# The short X.Y version
version = u''
# The full version, including alpha/beta/rc tags
release = u'3.1.0'
release = u'4.0.0'

# -- General configuration ---------------------------------------------------

Expand Down
20 changes: 5 additions & 15 deletions source/rtd_pages/install_binary_tarball.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,27 @@ Binary Tarball Download & Setup

The Electric Coin Company provides a binary tarball for download.

`Download Tarball for Debian Jessie v3.1.0 <https://z.cash/downloads/zcash-3.1.0-linux64-debian-jessie.tar.gz>`_

`Download Tarball for Debian Stretch v3.1.0 <https://z.cash/downloads/zcash-3.1.0-linux64-debian-stretch.tar.gz>`_
`Download Tarball for Debian Stretch v4.0.0 <https://z.cash/downloads/zcash-3.1.0-linux64-debian-stretch.tar.gz>`_

After downloading but before extracting, verify that the checksum of the tarball matches the hash below for the version of the binary you downloaded:

Debian Jessie:

.. code-block:: bash
sha256sum zcash-3.1.0-linux64-debian-jessie.tar.gz
Result: ``b33210b7d3e78ac19a5d1791ca6c294cdfc61abd1ace93305a49df2ab000e639``

Debian Stretch:

.. code-block:: bash
sha256sum zcash-3.1.0-linux64-debian-stretch.tar.gz
sha256sum zcash-4.0.0-linux64-debian-stretch.tar.gz
Result: ``48f9ff15ffc2da9f5890df16cddd92ac58d104b820414f3d02cd77d78664c5c2``
Result: ``a0daf673d45e92fe97f2dd43bbaf6d6653940643aff62915f46df89af4d8c8b5``

This checksum was generated from our gitian deterministic build process. `View all gitian signatures <https://github.com/zcash/gitian.sigs/tree/master>`_.

Once you've verified that it matches, extract the files and move the binaries into your executables $PATH:

.. code-block:: bash
tar -xvf zcash-3.1.0-linux64.tar.gz
tar -xvf zcash-4.0.0-linux64.tar.gz
mv -t /usr/local/bin/ zcash-3.1.0/bin/*
mv -t /usr/local/bin/ zcash-4.0.0/bin/*
Now that Zcash is installed, run this command to download the parameters used to create and verify shielded transactions:

Expand Down
6 changes: 3 additions & 3 deletions source/rtd_pages/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ If you're on a Debian-based distribution, you can follow the :ref:`install-debia
git fetch origin
| Ensure you check the current release version from :fa:`github` `here <https://github.com/zcash/zcash>`_ .
| If ``v3.0.0`` was current, issue the following commands:
| If ``v4.0.0`` was current, issue the following commands:
.. code-block:: bash
git checkout v3.0.0
git checkout v4.0.0
./zcutil/fetch-params.sh
./zcutil/build.sh -j$(nproc)
Expand Down Expand Up @@ -205,7 +205,7 @@ Now we need to get the Zcash software from the repository:
git clone https://github.com/zcash/zcash.git
cd zcash/
git checkout v3.0.0
git checkout v4.0.0
./zcutil/fetch-params.sh
This will fetch the parameters generated in the Sapling MPC, and place them into ``~/.zcash-params/ ``. These parameters are around 760 MB in size, so it may take some time to download them.
Expand Down

0 comments on commit e73f0ae

Please sign in to comment.