e0141f8324
* version: bump beta to 2.5.1 * fix(whisper expiry): current time + work + ttl (#10587) * update bootnodes (#10595) * config: update goerli bootnodes * config: update kotti bootnodes * adds rpc error message for --no-ancient-blocks (#10608) * adds error message for --no-ancient-blocks, closes #10261 * Apply suggestions from code review Co-Authored-By: seunlanlege <seunlanlege@gmail.com> * Constantinople HF on POA Core (#10606) * Constantinople HF on POA Core Plan Constantinople/St.Petersfork HF on POA Core network at block 8582254. Original PR in POA repository: https://github.com/poanetwork/poa-chain-spec/pull/110 * Remove extra empty line * evm: add some mulmod benches (#10600) * evm: add blockhash_mulmod bench * evm: use num-bigint for mod ops * Clique: zero-fill extradata when the supplied value is less than 32 bytes in length (#10605) * Update kovan.json to switch validator set to POA Consensus Contracts (#10628) * Fix publish docs (#10635) * Fix publish docs * this never should be forced, either way compiling previous versions will produce outdated docs * fix array, var was moved to the group project global variables list * Fix rinkeby petersburg fork (#10632)
36 lines
1.1 KiB
TOML
36 lines
1.1 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.5.1"
|
|
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 = 7280000, critical = false }
|
|
ropsten = { forkBlock = 4939394, critical = false }
|
|
kovan = { forkBlock = 10255201, critical = false }
|
|
goerli = { forkBlock = 0, critical = false }
|
|
|
|
[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 = []
|