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"))]