-
Notifications
You must be signed in to change notification settings - Fork 51
Release
Seulgi Kim edited this page Apr 4, 2019
·
15 revisions
CodeChain would be published irregularly using semver syntax. You can see all the release and change logs in here.
The public API of CodeChain is JSON RPC and Network Protocol. So the major version would be increased when one of them is changed without backward compatibility.
touch codechain/main.rs # It guarantees to update the commit hash.
cargo build --release
Use sha256 for checksum
shasum -a 256 codechain
- Set version
CODECHAIN_VERSION="1.0.0"
- Compress the binary file
tar cvfz codechain-${CODECHAIN_VERSION}-$(uname -m)-$(echo $(uname) | tr '[:upper:]' '[:lower:]').tar.gz codechain
- template
| OS | Binary | SHA256 |
|-------|---------------------------|------------|
| Linux | [{filename}]({file path}) | {checksum} |
| OS X | [{filename}]({file path}) | {checksum} |