parity-version: beta release 1.11.4 (#8856)

* Cherry-pick network-specific release flag (#8821)

* parity-version: bump beta to 1.11.4

* parity-version: remove merge leftovers
This commit is contained in:
Afri Schoedon
2018-06-12 08:13:57 +02:00
committed by Marek Kotewicz
parent a66e36bf41
commit f26a7fe6fa
5 changed files with 17 additions and 18 deletions

View File

@@ -3,7 +3,7 @@
[package]
name = "parity-version"
# NOTE: this value is used for Parity version string (via env CARGO_PKG_VERSION)
version = "1.11.3"
version = "1.11.4"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
@@ -12,14 +12,13 @@ build = "build.rs"
# Used by auto-updater and for Parity version string.
track = "beta"
# Indicates a critical release in this track (i.e. consensus issue)
critical = true
# Latest supported fork blocks for various networks. Used ONLY by auto-updater.
[package.metadata.forks]
foundation = 4370000
ropsten = 10
kovan = 6600000
# Network specific settings, used ONLY by auto-updater.
# Latest supported fork blocks.
# Indicates a critical release in this track (i.e. consensus issue).
[package.metadata.networks]
foundation = { forkBlock = 4370000, critical = false }
ropsten = { forkBlock = 10, critical = false }
kovan = { forkBlock = 6600000, critical = false }
[dependencies]
ethcore-bytes = { path = "../bytes" }