10657d96c4
* version: mark 2.3 track beta * version: mark update critical on all networks * Ping nodes from discovery (#10167) * Fix _cannot recursively call into `Core`_ issue (#10144) * Change igd to github:maufl/rust-igd * Run `igd::search_gateway_from_timeout` from own thread * Handle the case for contract creation on an empty but exist account with storage items (#10065) * Add is_base_storage_root_unchanged * Fix compile, use a shortcut for check, and remove ignored tests * Add a warn! * Update ethereum/tests to v6.0.0-beta.2 * grumble: use {:#x} instead of 0x{:x} Co-Authored-By: sorpaas <accounts@that.world> * version: bump fork blocks for kovan and foundation (#10186) * pull constantinople on ethereum network (#10189) * ethcore: pull constantinople on ethereum network * version: mark update as critical * ethcore: remove constantinople alltogether from chain spec * version: revert fork block for ethereum
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
# NOTE This file is used by the auto-updater service.
|
|
# Make sure to update the service if it's moved or the structure is changed.
|
|
[package]
|
|
name = "parity-version"
|
|
# NOTE: this value is used for Parity Ethereum version string (via env CARGO_PKG_VERSION)
|
|
version = "2.3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[package.metadata]
|
|
# This versions track. Should be changed to `stable` or `beta` when on respective branches.
|
|
# Used by auto-updater and for Parity version string.
|
|
track = "beta"
|
|
|
|
# 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 = true }
|
|
ropsten = { forkBlock = 4230000, critical = false }
|
|
kovan = { forkBlock = 9200000, critical = true }
|
|
|
|
[dependencies]
|
|
parity-bytes = "0.1"
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
target_info = "0.1"
|
|
|
|
[build-dependencies]
|
|
vergen = "0.1"
|
|
rustc_version = "0.2"
|
|
toml = "0.4"
|
|
|
|
[features]
|
|
final = []
|