2018-02-08 12:38:56 +01:00
|
|
|
# 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.
|
2017-12-22 14:37:39 +01:00
|
|
|
[package]
|
|
|
|
name = "parity-version"
|
2018-08-30 19:57:27 +02:00
|
|
|
# NOTE: this value is used for Parity Ethereum version string (via env CARGO_PKG_VERSION)
|
2018-11-29 10:57:49 +01:00
|
|
|
version = "2.2.2"
|
2017-12-22 14:37:39 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
[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.
|
version: mark 2.2.0 beta (#9820)
* version: mark 2.2.0 beta
* ci: remove failing tests for android, windows, and macos (#9788)
* ci: remove failing tests for android, windows, and macos
* ci: restore android build jobs
* Move state root verification before gas used (#9841)
* Classic.json Bootnode Update (#9828)
* fix: Update bootnodes list to only responsive nodes
* feat: Add more bootnodes to classic.json list
* feat: Add retested bootnodes
* Implement NoProof for json tests and update tests reference (replaces #9744) (#9814)
* Update test reference.
Block test are really not working so I disabled a few by commenting
directly in source.
* Move ethtest commit cursor.
* Implements 'NoProof' engine from https://github.com/ethereum/tests/issues/464 .
Since tests has been regenerated those one were failing on block
difficulty check.
Update ethereum/tests, waiting for cost fix (block test are still
commented).
* Update tests submodule reference to latest (all test passing except an
identified case).
Fix block reward of constantinople json.
* Restore broken test by using old json tests files.
* Use CanonNoSeal instead of a custom engine, still have to include some
additional tests code.
* Gas upper limit check in json_chain test was bad, moving the test to
verification, the test is running in `verify_header_param`.
Note that test was previously only for ethash, and now for any engine.
* Restore old behavior (gas uper limit only for ethash engine), at the
cost of an additional trait method.
* Proper rpc test fix.
* Update tests submodule, add SStore bug tests.
* Fix json issue tabulation.
Update tests submodule to latest master (lot of new sstore tests
passing)
* Switch ethereum/tests to tag 6.0.0-beta.1 (no tests changes from latest
synch).
* Display hex with separator, use indirection instead of clone for copy
types.
2018-11-02 10:02:46 +01:00
|
|
|
track = "beta"
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2018-06-08 15:54:23 +02:00
|
|
|
# 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 }
|
2018-10-18 15:54:42 +02:00
|
|
|
ropsten = { forkBlock = 4230000, critical = false }
|
2018-06-08 15:54:23 +02:00
|
|
|
kovan = { forkBlock = 6600000, critical = false }
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2017-12-22 14:37:39 +01:00
|
|
|
[dependencies]
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2017-12-22 14:37:39 +01:00
|
|
|
target_info = "0.1"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = "0.1"
|
2018-04-04 11:54:41 +02:00
|
|
|
rustc_version = "0.2"
|
2018-02-08 12:38:56 +01:00
|
|
|
toml = "0.4"
|
2018-01-02 11:02:04 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
final = []
|