Updating Stratis To A New Version
Step 1) Go to the Stratis Source Folder
cd ~/stratisX
Step 2) Check For New Version
git checkout master && git pull
If there are updates to the code it will be displayed indicating which files have been changed. Then do
git tag
This will give you a list of the versions available ( v2.0.0.5 is the current version). If a new version is listed you can choose it by doing:
git checkout <version-number>
(example git checkout v2.0.0.5
).
Step 3) Clean Old Build Files
Next clean your source folder of any build files left over from the previous compile:
make clean; make distclean; cd src; make clean
You can now go back and build stratisd or stratis-qt to your liking, enjoy !