From 00b5d30d339233a1d9124363f192b74faa54f183 Mon Sep 17 00:00:00 2001 From: Afri Schoedon <5chdn@users.noreply.github.com> Date: Wed, 17 Jan 2018 12:28:38 +0100 Subject: [PATCH] Make 1.8 stable (#7532) * Bump 1.8 to stable * Make js-precompiled stable --- 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 5ad41f3dc..ebb4127c9 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 = "beta" } +parity-ui-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "stable" } [features] no-precompiled-js = ["parity-ui-dev"] diff --git a/util/src/misc.rs b/util/src/misc.rs index 128a97103..e33580ca0 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 = "beta"; +const THIS_TRACK: &'static str = "stable"; // ^^^ should be reset to "stable" or "beta" according to the release branch. #[cfg(not(feature = "final"))]