Beta branch cleanup (#3226)

* Removed binaries

* Version string set to beta


Former-commit-id: 2a650287ceca214b23caba603571d2ed93513656
This commit is contained in:
Arkadiy Paronyan 2016-11-07 11:54:23 +01:00 committed by GitHub
parent fbe02fc6b6
commit e086b4e94a
8 changed files with 1 additions and 8 deletions

View File

@ -1 +0,0 @@
312f35972c9d411a163f56daab317535 target/release/parity

View File

@ -1 +0,0 @@
f1e7be35817f46b3f00ed4612ee50e153bda0023

View File

@ -1 +0,0 @@
d5879ff3b4b7b7028aefa0e8689acfd3 parity_1.4.0_amd64.deb

View File

@ -1 +0,0 @@
2f367b90cba20056eea0d206a6227e657aea00b2

View File

@ -1 +0,0 @@
2e7395046ffc4dc00198ebe460da3c21 parity_1.4.0_arm64.deb

View File

@ -1 +0,0 @@
d9f51c47339d8db57409b447b4e802936e1a2191

View File

@ -1 +0,0 @@
118b0f7903c98b0a95cfd0ea72a9d028 parity_1.4.0_armhf.deb

View File

@ -40,7 +40,7 @@ pub fn version() -> String {
let date_dash = if commit_date.is_empty() { "" } else { "-" };
let env = Target::env();
let env_dash = if env.is_empty() { "" } else { "-" };
format!("Parity/v{}-unstable{}{}{}{}/{}-{}{}{}/rustc{}", env!("CARGO_PKG_VERSION"), sha3_dash, sha3, date_dash, commit_date, Target::arch(), Target::os(), env_dash, env, rustc_version())
format!("Parity/v{}-beta{}{}{}{}/{}-{}{}{}/rustc{}", env!("CARGO_PKG_VERSION"), sha3_dash, sha3, date_dash, commit_date, Target::arch(), Target::os(), env_dash, env, rustc_version())
}
/// Get the standard version data for this software.