From 865bb12f3173ef45bd0958a55ed0af4a8e8a693c Mon Sep 17 00:00:00 2001 From: Aaron Greenspan Date: Mon, 11 Jan 2021 12:54:17 -0700 Subject: [PATCH] appmgr: fix --- appmgr/src/version/v0_2_8.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appmgr/src/version/v0_2_8.rs b/appmgr/src/version/v0_2_8.rs index a7be27fe0..2b141ddaa 100644 --- a/appmgr/src/version/v0_2_8.rs +++ b/appmgr/src/version/v0_2_8.rs @@ -6,12 +6,12 @@ const V0_2_8: emver::Version = emver::Version::new(0, 2, 8, 0); pub struct Version; #[async_trait] impl VersionT for Version { - type Previous = v0_2_8::Version; + type Previous = v0_2_7::Version; fn new() -> Self { Version } fn semver(&self) -> &'static emver::Version { - &V0_2_4 + &V0_2_8 } async fn up(&self) -> Result<(), Error> { Ok(())