downgrade remaining version strings to 1.0.0-alpha.0 (#1488)

This commit is contained in:
Alfredo Garcia 2020-12-14 22:21:00 -03:00 committed by GitHub
parent 436ce00fc2
commit 41833340c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -4025,7 +4025,7 @@ dependencies = [
[[package]]
name = "zebrad"
version = "3.0.0-alpha.0"
version = "1.0.0-alpha.0"
dependencies = [
"abscissa_core",
"atty",

View File

@ -2,7 +2,7 @@
name = "zebrad"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
version = "3.0.0-alpha.0"
version = "1.0.0-alpha.0"
edition = "2018"
repository = "https://github.com/ZcashFoundation/zebra"

View File

@ -77,7 +77,7 @@ impl<A: abscissa_core::Application> Component<A> for Tracing {
}
fn version(&self) -> abscissa_core::Version {
abscissa_core::Version::parse("3.0.0-alpha.0").unwrap()
abscissa_core::Version::parse("1.0.0-alpha.0").unwrap()
}
fn before_shutdown(&self, _kind: Shutdown) -> Result<(), FrameworkError> {