mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
bump version
This commit is contained in:
2
core/Cargo.lock
generated
2
core/Cargo.lock
generated
@@ -4961,7 +4961,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "start-os"
|
name = "start-os"
|
||||||
version = "0.3.6-alpha.1"
|
version = "0.3.6-alpha.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"async-compression",
|
"async-compression",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ keywords = [
|
|||||||
name = "start-os"
|
name = "start-os"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/Start9Labs/start-os"
|
repository = "https://github.com/Start9Labs/start-os"
|
||||||
version = "0.3.6-alpha.1"
|
version = "0.3.6-alpha.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|||||||
@@ -15,8 +15,9 @@ mod v0_3_5_1;
|
|||||||
mod v0_3_5_2;
|
mod v0_3_5_2;
|
||||||
mod v0_3_6_alpha_0;
|
mod v0_3_6_alpha_0;
|
||||||
mod v0_3_6_alpha_1;
|
mod v0_3_6_alpha_1;
|
||||||
|
mod v0_3_6_alpha_2;
|
||||||
|
|
||||||
pub type Current = v0_3_6_alpha_1::Version;
|
pub type Current = v0_3_6_alpha_2::Version;
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
@@ -28,6 +29,7 @@ enum Version {
|
|||||||
V0_3_5_2(Wrapper<v0_3_5_2::Version>),
|
V0_3_5_2(Wrapper<v0_3_5_2::Version>),
|
||||||
V0_3_6_alpha_0(Wrapper<v0_3_6_alpha_0::Version>),
|
V0_3_6_alpha_0(Wrapper<v0_3_6_alpha_0::Version>),
|
||||||
V0_3_6_alpha_1(Wrapper<v0_3_6_alpha_1::Version>),
|
V0_3_6_alpha_1(Wrapper<v0_3_6_alpha_1::Version>),
|
||||||
|
V0_3_6_alpha_2(Wrapper<v0_3_6_alpha_2::Version>),
|
||||||
Other(exver::Version),
|
Other(exver::Version),
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,6 +51,7 @@ impl Version {
|
|||||||
Version::V0_3_5_2(Wrapper(x)) => x.semver(),
|
Version::V0_3_5_2(Wrapper(x)) => x.semver(),
|
||||||
Version::V0_3_6_alpha_0(Wrapper(x)) => x.semver(),
|
Version::V0_3_6_alpha_0(Wrapper(x)) => x.semver(),
|
||||||
Version::V0_3_6_alpha_1(Wrapper(x)) => x.semver(),
|
Version::V0_3_6_alpha_1(Wrapper(x)) => x.semver(),
|
||||||
|
Version::V0_3_6_alpha_2(Wrapper(x)) => x.semver(),
|
||||||
Version::Other(x) => x.clone(),
|
Version::Other(x) => x.clone(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -250,6 +253,7 @@ pub async fn init(
|
|||||||
Version::V0_3_5_2(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
Version::V0_3_5_2(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
||||||
Version::V0_3_6_alpha_0(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
Version::V0_3_6_alpha_0(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
||||||
Version::V0_3_6_alpha_1(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
Version::V0_3_6_alpha_1(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
||||||
|
Version::V0_3_6_alpha_2(v) => v.0.migrate_to(&Current::new(), &db, &mut progress).await?,
|
||||||
Version::Other(_) => {
|
Version::Other(_) => {
|
||||||
return Err(Error::new(
|
return Err(Error::new(
|
||||||
eyre!("Cannot downgrade"),
|
eyre!("Cannot downgrade"),
|
||||||
@@ -300,6 +304,9 @@ mod tests {
|
|||||||
Just(Version::V0_3_6_alpha_1(Wrapper(
|
Just(Version::V0_3_6_alpha_1(Wrapper(
|
||||||
v0_3_6_alpha_1::Version::new()
|
v0_3_6_alpha_1::Version::new()
|
||||||
))),
|
))),
|
||||||
|
Just(Version::V0_3_6_alpha_2(Wrapper(
|
||||||
|
v0_3_6_alpha_2::Version::new()
|
||||||
|
))),
|
||||||
em_version().prop_map(Version::Other),
|
em_version().prop_map(Version::Other),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
35
core/startos/src/version/v0_3_6_alpha_2.rs
Normal file
35
core/startos/src/version/v0_3_6_alpha_2.rs
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
use exver::{PreReleaseSegment, VersionRange};
|
||||||
|
|
||||||
|
use super::v0_3_5::V0_3_0_COMPAT;
|
||||||
|
use super::{v0_3_6_alpha_1, VersionT};
|
||||||
|
use crate::db::model::Database;
|
||||||
|
use crate::prelude::*;
|
||||||
|
|
||||||
|
lazy_static::lazy_static! {
|
||||||
|
static ref V0_3_6_alpha_2: exver::Version = exver::Version::new(
|
||||||
|
[0, 3, 6],
|
||||||
|
[PreReleaseSegment::String("alpha".into()), 2.into()]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug)]
|
||||||
|
pub struct Version;
|
||||||
|
|
||||||
|
impl VersionT for Version {
|
||||||
|
type Previous = v0_3_6_alpha_1::Version;
|
||||||
|
fn new() -> Self {
|
||||||
|
Version
|
||||||
|
}
|
||||||
|
fn semver(&self) -> exver::Version {
|
||||||
|
V0_3_6_alpha_2.clone()
|
||||||
|
}
|
||||||
|
fn compat(&self) -> &'static VersionRange {
|
||||||
|
&V0_3_0_COMPAT
|
||||||
|
}
|
||||||
|
async fn up(&self, _db: &TypedPatchDb<Database>) -> Result<(), Error> {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
async fn down(&self, _db: &TypedPatchDb<Database>) -> Result<(), Error> {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "startos-ui",
|
"name": "startos-ui",
|
||||||
"version": "0.3.6-alpha.1",
|
"version": "0.3.6-alpha.2",
|
||||||
"author": "Start9 Labs, Inc",
|
"author": "Start9 Labs, Inc",
|
||||||
"homepage": "https://start9.com/",
|
"homepage": "https://start9.com/",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -21,5 +21,5 @@
|
|||||||
"ackInstructions": {},
|
"ackInstructions": {},
|
||||||
"theme": "Dark",
|
"theme": "Dark",
|
||||||
"widgets": [],
|
"widgets": [],
|
||||||
"ack-welcome": "0.3.6-alpha.1"
|
"ack-welcome": "0.3.6-alpha.2"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<ion-content class="ion-padding">
|
<ion-content class="ion-padding">
|
||||||
<h2>This Release</h2>
|
<h2>This Release</h2>
|
||||||
|
|
||||||
<h4>0.3.6-alpha.1</h4>
|
<h4>0.3.6-alpha.2</h4>
|
||||||
<h6>This is an ALPHA release! DO NOT use for production data!</h6>
|
<h6>This is an ALPHA release! DO NOT use for production data!</h6>
|
||||||
<h6>Expect that any data you create or store on this version of the OS can be LOST FOREVER!</h6>
|
<h6>Expect that any data you create or store on this version of the OS can be LOST FOREVER!</h6>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user