From a00f1ab549e1e45e9cd327745dd8cd7e7c8a9b0c Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 29 Jan 2025 12:29:49 -0700 Subject: [PATCH] fix version bump --- core/startos/src/version/v0_3_6_alpha_13.rs | 39 +++------------------ 1 file changed, 5 insertions(+), 34 deletions(-) diff --git a/core/startos/src/version/v0_3_6_alpha_13.rs b/core/startos/src/version/v0_3_6_alpha_13.rs index 3508a27ac..da34f7743 100644 --- a/core/startos/src/version/v0_3_6_alpha_13.rs +++ b/core/startos/src/version/v0_3_6_alpha_13.rs @@ -4,13 +4,13 @@ use exver::{PreReleaseSegment, VersionRange}; use imbl_value::json; use super::v0_3_5::V0_3_0_COMPAT; -use super::{v0_3_6_alpha_11, VersionT}; +use super::{v0_3_6_alpha_12, VersionT}; use crate::prelude::*; lazy_static::lazy_static! { - static ref V0_3_6_alpha_12: exver::Version = exver::Version::new( + static ref V0_3_6_alpha_13: exver::Version = exver::Version::new( [0, 3, 6], - [PreReleaseSegment::String("alpha".into()), 12.into()] + [PreReleaseSegment::String("alpha".into()), 13.into()] ); } @@ -18,48 +18,19 @@ lazy_static::lazy_static! { pub struct Version; impl VersionT for Version { - type Previous = v0_3_6_alpha_11::Version; + type Previous = v0_3_6_alpha_12::Version; type PreUpRes = (); async fn pre_up(self) -> Result { Ok(()) } fn semver(self) -> exver::Version { - V0_3_6_alpha_12.clone() + V0_3_6_alpha_13.clone() } fn compat(self) -> &'static VersionRange { &V0_3_0_COMPAT } fn up(self, db: &mut Value, _: Self::PreUpRes) -> Result<(), Error> { - let bindings: BTreeMap = [( - 80, - json!({ - "enabled": false, - "options": { - "preferredExternalPort": 80, - "addSsl": { - "preferredExternalPort": 443, - "alpn": { "specified": [ "http/1.1", "h2" ] }, - }, - "secure": null, - }, - "net": { - "assignedPort": null, - "assignedSslPort": 443, - "public": false, - } - }), - )] - .into_iter() - .collect(); - let onion = db["public"]["serverInfo"]["onionAddress"].clone(); - db["public"]["serverInfo"]["host"] = json!({ - "bindings": bindings, - "onions": [onion], - "domains": {}, - "hostnameInfo": {}, - }); - Ok(()) } fn down(self, _db: &mut Value) -> Result<(), Error> {