appmgr: version bump -> 0.2.7

This commit is contained in:
Aiden McClelland
2020-12-01 15:39:31 -07:00
committed by Keagan McClelland
parent 6d56528e74
commit 3efb38a742
4 changed files with 28 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
use super::*;
const V0_2_7: emver::Version = emver::Version::new(0, 2, 7, 0);
pub struct Version;
#[async_trait]
impl VersionT for Version {
type Previous = v0_2_6::Version;
fn new() -> Self {
Version
}
fn semver(&self) -> &'static emver::Version {
&V0_2_7
}
async fn up(&self) -> Result<(), Error> {
Ok(())
}
async fn down(&self) -> Result<(), Error> {
Ok(())
}
}