From 0085d6a47bdd82d9b9fa8cf6858d33b6c35d64a9 Mon Sep 17 00:00:00 2001 From: arkpar Date: Thu, 12 Oct 2017 20:28:59 +0200 Subject: [PATCH] v1.8.0 in beta --- dapps/ui/Cargo.toml | 2 +- util/src/misc.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dapps/ui/Cargo.toml b/dapps/ui/Cargo.toml index 41763b14d..5ad41f3dc 100644 --- a/dapps/ui/Cargo.toml +++ b/dapps/ui/Cargo.toml @@ -12,7 +12,7 @@ rustc_version = "0.1" [dependencies] parity-ui-dev = { path = "../../js", optional = true } # This is managed by the js/scripts/release.sh script on CI - keep it in a single line -parity-ui-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "master" } +parity-ui-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "beta" } [features] no-precompiled-js = ["parity-ui-dev"] diff --git a/util/src/misc.rs b/util/src/misc.rs index 6a1a11708..128a97103 100644 --- a/util/src/misc.rs +++ b/util/src/misc.rs @@ -24,7 +24,7 @@ include!(concat!(env!("OUT_DIR"), "/version.rs")); include!(concat!(env!("OUT_DIR"), "/rustc_version.rs")); #[cfg(feature = "final")] -const THIS_TRACK: &'static str = "nightly"; +const THIS_TRACK: &'static str = "beta"; // ^^^ should be reset to "stable" or "beta" according to the release branch. #[cfg(not(feature = "final"))]