From 0d3c2fd53e6abe2c8b333310b4ee6d5f9a90e660 Mon Sep 17 00:00:00 2001 From: Benjamin Klum Date: Tue, 20 Aug 2024 15:56:34 +0200 Subject: [PATCH] v2.16.2 --- Cargo.lock | 2 +- main/Cargo.toml | 2 +- main/src/infrastructure/proto/mod.rs | 2 +- main/src/infrastructure/ui/app/app_library.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5869c4964..a5d09ae32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2804,7 +2804,7 @@ dependencies = [ [[package]] name = "helgobox" -version = "2.16.1" +version = "2.16.2" dependencies = [ "anyhow", "approx", diff --git a/main/Cargo.toml b/main/Cargo.toml index 5dc5afc01..b31ba7e05 100644 --- a/main/Cargo.toml +++ b/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helgobox" -version = "2.16.1" +version = "2.16.2" authors = ["Benjamin Klum "] edition = "2021" build = "build.rs" diff --git a/main/src/infrastructure/proto/mod.rs b/main/src/infrastructure/proto/mod.rs index 9c760ba5e..7444e0b51 100644 --- a/main/src/infrastructure/proto/mod.rs +++ b/main/src/infrastructure/proto/mod.rs @@ -41,4 +41,4 @@ pub use initial_playtime_events::*; /// It's important to get this right in order to get good error messages from customers. Knowing /// that they just have an incompatible version mix (e.g. due to manual installing) makes it /// trivial to respond to bug reports. -pub const HOST_API_VERSION: &str = "8.0.0"; +pub const HOST_API_VERSION: &str = "9.0.0"; diff --git a/main/src/infrastructure/ui/app/app_library.rs b/main/src/infrastructure/ui/app/app_library.rs index e4b99a16c..9cd249259 100644 --- a/main/src/infrastructure/ui/app/app_library.rs +++ b/main/src/infrastructure/ui/app/app_library.rs @@ -804,7 +804,7 @@ fn to_status(err: anyhow::Error) -> Status { /// /// This doesn't necessarily need to match the `HOST_API_VERSION`, it's too different things. /// In practice, it might be equal or similar because host (plug-in) and app are developed tightly together. -pub const MIN_APP_API_VERSION: Version = Version::new(8, 0, 0); +pub const MIN_APP_API_VERSION: Version = Version::new(9, 0, 0); #[cfg(not(feature = "playtime"))] fn playtime_not_available() -> Result<(), Status> {