zebra: move to 1.x-based versioning. (#1476)
Previously we set the crate versions to 3.x, so that the major version was aligned with the NU version. But we want to be able to make API changes independently of the NU schedule.
This commit is contained in:
parent
de613409c2
commit
0842eb2dab
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-chain"
|
name = "zebra-chain"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-client"
|
name = "zebra-client"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-consensus"
|
name = "zebra-consensus"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-network"
|
name = "zebra-network"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -57,7 +57,8 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: i64 = 30 * 60;
|
||||||
/// This must be a valid [BIP 14] user agent.
|
/// This must be a valid [BIP 14] user agent.
|
||||||
///
|
///
|
||||||
/// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki
|
/// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki
|
||||||
pub const USER_AGENT: &str = "/🦓Zebra🦓:3.0.0-alpha.0/";
|
// XXX can we generate this from crate metadata?
|
||||||
|
pub const USER_AGENT: &str = "/🦓Zebra🦓:1.0.0-alpha.0/";
|
||||||
|
|
||||||
/// The Zcash network protocol version implemented by this crate, and advertised
|
/// The Zcash network protocol version implemented by this crate, and advertised
|
||||||
/// during connection setup.
|
/// during connection setup.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-rpc"
|
name = "zebra-rpc"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-script"
|
name = "zebra-script"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-state"
|
name = "zebra-state"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-test"
|
name = "zebra-test"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name = "zebra-utils"
|
name = "zebra-utils"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "3.0.0-alpha.0"
|
version = "1.0.0-alpha.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
# Prevent accidental publication of this utility crate.
|
# Prevent accidental publication of this utility crate.
|
||||||
publish = false
|
publish = false
|
||||||
|
|
Loading…
Reference in New Issue