mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
chore: Update version to 0.3.4" (#2184)
* chore: Update version to 0.3.4" * chore: Update others to the latest code * release notes * registry not marketplace --------- Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
This commit is contained in:
2
backend/Cargo.lock
generated
2
backend/Cargo.lock
generated
@@ -1263,7 +1263,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "embassy-os"
|
name = "embassy-os"
|
||||||
version = "0.3.3-rev.1"
|
version = "0.3.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"async-stream",
|
"async-stream",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ keywords = [
|
|||||||
name = "embassy-os"
|
name = "embassy-os"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/Start9Labs/embassy-os"
|
repository = "https://github.com/Start9Labs/embassy-os"
|
||||||
version = "0.3.3-rev.1"
|
version = "0.3.4"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "embassy"
|
name = "embassy"
|
||||||
|
|||||||
@@ -18,9 +18,9 @@ mod v0_3_1_2;
|
|||||||
mod v0_3_2;
|
mod v0_3_2;
|
||||||
mod v0_3_2_1;
|
mod v0_3_2_1;
|
||||||
mod v0_3_3;
|
mod v0_3_3;
|
||||||
mod v0_3_3_1;
|
mod v0_3_4;
|
||||||
|
|
||||||
pub type Current = v0_3_3_1::Version;
|
pub type Current = v0_3_4::Version;
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
@@ -35,7 +35,7 @@ enum Version {
|
|||||||
V0_3_2(Wrapper<v0_3_2::Version>),
|
V0_3_2(Wrapper<v0_3_2::Version>),
|
||||||
V0_3_2_1(Wrapper<v0_3_2_1::Version>),
|
V0_3_2_1(Wrapper<v0_3_2_1::Version>),
|
||||||
V0_3_3(Wrapper<v0_3_3::Version>),
|
V0_3_3(Wrapper<v0_3_3::Version>),
|
||||||
V0_3_3_1(Wrapper<v0_3_3_1::Version>),
|
V0_3_4(Wrapper<v0_3_4::Version>),
|
||||||
Other(emver::Version),
|
Other(emver::Version),
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@ impl Version {
|
|||||||
Version::V0_3_2(Wrapper(x)) => x.semver(),
|
Version::V0_3_2(Wrapper(x)) => x.semver(),
|
||||||
Version::V0_3_2_1(Wrapper(x)) => x.semver(),
|
Version::V0_3_2_1(Wrapper(x)) => x.semver(),
|
||||||
Version::V0_3_3(Wrapper(x)) => x.semver(),
|
Version::V0_3_3(Wrapper(x)) => x.semver(),
|
||||||
Version::V0_3_3_1(Wrapper(x)) => x.semver(),
|
Version::V0_3_4(Wrapper(x)) => x.semver(),
|
||||||
Version::Other(x) => x.clone(),
|
Version::Other(x) => x.clone(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -198,7 +198,7 @@ pub async fn init<Db: DbHandle>(
|
|||||||
Version::V0_3_2(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
Version::V0_3_2(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
||||||
Version::V0_3_2_1(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
Version::V0_3_2_1(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
||||||
Version::V0_3_3(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
Version::V0_3_3(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
||||||
Version::V0_3_3_1(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
Version::V0_3_4(v) => v.0.migrate_to(&Current::new(), db, receipts).await?,
|
||||||
Version::Other(_) => {
|
Version::Other(_) => {
|
||||||
return Err(Error::new(
|
return Err(Error::new(
|
||||||
eyre!("Cannot downgrade"),
|
eyre!("Cannot downgrade"),
|
||||||
@@ -241,7 +241,7 @@ mod tests {
|
|||||||
Just(Version::V0_3_2(Wrapper(v0_3_2::Version::new()))),
|
Just(Version::V0_3_2(Wrapper(v0_3_2::Version::new()))),
|
||||||
Just(Version::V0_3_2_1(Wrapper(v0_3_2_1::Version::new()))),
|
Just(Version::V0_3_2_1(Wrapper(v0_3_2_1::Version::new()))),
|
||||||
Just(Version::V0_3_3(Wrapper(v0_3_3::Version::new()))),
|
Just(Version::V0_3_3(Wrapper(v0_3_3::Version::new()))),
|
||||||
Just(Version::V0_3_3_1(Wrapper(v0_3_3_1::Version::new()))),
|
Just(Version::V0_3_4(Wrapper(v0_3_4::Version::new()))),
|
||||||
em_version().prop_map(Version::Other),
|
em_version().prop_map(Version::Other),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ use serde_json::{json, Value};
|
|||||||
use super::v0_3_0::V0_3_0_COMPAT;
|
use super::v0_3_0::V0_3_0_COMPAT;
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
const V0_3_3_1: emver::Version = emver::Version::new(0, 3, 3, 1);
|
const V0_3_4: emver::Version = emver::Version::new(0, 3, 4, 0);
|
||||||
|
|
||||||
const COMMUNITY_URL: &str = "https://community-registry.start9.com/";
|
const COMMUNITY_URL: &str = "https://community-registry.start9.com/";
|
||||||
const MAIN_REGISTRY: &str = "https://registry.start9.com/";
|
const MAIN_REGISTRY: &str = "https://registry.start9.com/";
|
||||||
@@ -32,7 +32,7 @@ impl VersionT for Version {
|
|||||||
Version
|
Version
|
||||||
}
|
}
|
||||||
fn semver(&self) -> emver::Version {
|
fn semver(&self) -> emver::Version {
|
||||||
V0_3_3_1
|
V0_3_4
|
||||||
}
|
}
|
||||||
fn compat(&self) -> &'static VersionRange {
|
fn compat(&self) -> &'static VersionRange {
|
||||||
&*V0_3_0_COMPAT
|
&*V0_3_0_COMPAT
|
||||||
@@ -63,6 +63,7 @@ impl VersionT for Version {
|
|||||||
}
|
}
|
||||||
ui["theme"] = json!("Dark".to_string());
|
ui["theme"] = json!("Dark".to_string());
|
||||||
ui["widgets"] = json!([]);
|
ui["widgets"] = json!([]);
|
||||||
|
ui.save(db).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
async fn down<Db: DbHandle>(&self, db: &mut Db) -> Result<(), Error> {
|
async fn down<Db: DbHandle>(&self, db: &mut Db) -> Result<(), Error> {
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "embassy-os",
|
"name": "embassy-os",
|
||||||
"version": "0.3.3.1",
|
"version": "0.3.4",
|
||||||
"author": "Start9 Labs, Inc",
|
"author": "Start9 Labs, Inc",
|
||||||
"homepage": "https://start9.com/",
|
"homepage": "https://start9.com/",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -11,11 +11,11 @@
|
|||||||
|
|
||||||
<ion-content class="ion-padding">
|
<ion-content class="ion-padding">
|
||||||
<h2>This release</h2>
|
<h2>This release</h2>
|
||||||
<h4>0.3.3.1</h4>
|
<h4>0.3.4</h4>
|
||||||
<p class="note-padding">
|
<p class="note-padding">
|
||||||
View the complete
|
View the complete
|
||||||
<a
|
<a
|
||||||
href="https://github.com/Start9Labs/embassy-os/releases/tag/v0.3.3.1"
|
href="https://github.com/Start9Labs/embassy-os/releases/tag/v0.3.4"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
noreferrer
|
noreferrer
|
||||||
>
|
>
|
||||||
@@ -25,8 +25,12 @@
|
|||||||
</p>
|
</p>
|
||||||
<h6>Highlights</h6>
|
<h6>Highlights</h6>
|
||||||
<ul class="spaced-list">
|
<ul class="spaced-list">
|
||||||
<li>Various UI/UX improvements</li>
|
<li>Security patches</li>
|
||||||
<li>Various bugfixes and optimizations</li>
|
<li>Bug fixes</li>
|
||||||
|
<li>Breakout services to Community Registry</li>
|
||||||
|
<li>UI display improvements</li>
|
||||||
|
<li>Better logs</li>
|
||||||
|
<li>New system metrics</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="ion-text-center ion-padding">
|
<div class="ion-text-center ion-padding">
|
||||||
<ion-button
|
<ion-button
|
||||||
|
|||||||
Reference in New Issue
Block a user