From 0e6caa6a4cf9922d118ab6cb62d6e3d634b9c840 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Sat, 29 Jun 2024 01:23:04 +0200 Subject: [PATCH] Release: v2024.1-beta1 --- .../Core/Extensions/WebApplicationExtensions.cs | 9 +++++---- Iceshrimp.Backend/Iceshrimp.Backend.csproj | 4 ++-- README.md | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs b/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs index 9697d7ec..c02ec0c7 100644 --- a/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs +++ b/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs @@ -63,13 +63,14 @@ public static class WebApplicationExtensions if (workerId == null) { - app.Logger.LogInformation("Iceshrimp.NET v{version} ({domain})", instanceConfig.Version, - instanceConfig.AccountDomain); + app.Logger.LogInformation("Iceshrimp.NET v{version}, codename \"{codename}\" ({domain})", + instanceConfig.Version, instanceConfig.Codename, instanceConfig.AccountDomain); } else { - app.Logger.LogInformation("Iceshrimp.NET v{version} ({domain}) - worker {id}", instanceConfig.Version, - instanceConfig.AccountDomain, workerId); + app.Logger.LogInformation("Iceshrimp.NET v{version}, codename \"{codename}\" ({domain}) - worker {id}", + instanceConfig.Version, instanceConfig.Codename, instanceConfig.AccountDomain, + workerId); } await using var scope = app.Services.CreateAsyncScope(); diff --git a/Iceshrimp.Backend/Iceshrimp.Backend.csproj b/Iceshrimp.Backend/Iceshrimp.Backend.csproj index 9771e169..3ce62154 100644 --- a/Iceshrimp.Backend/Iceshrimp.Backend.csproj +++ b/Iceshrimp.Backend/Iceshrimp.Backend.csproj @@ -7,14 +7,14 @@ true none 2024.1 - alpha + beta1 true false 1 - + diff --git a/README.md b/README.md index 4fb4ff95..7498a357 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ Want to donate to the project? --- > **Note** -> This is alpha ([soon](https://issues.iceshrimp.dev/agiles/157-4/current) to be beta!) software. While the Mastodon client API is relatively complete, the frontend is not. It is therefore not advisable to upgrade existing Iceshrimp instances at present. Setting up staging instances to help us with testing is very appreciated, however, and will help us ensure eventual upgrades go as smoothly as possible. +> This is beta software. While the Mastodon client API is relatively complete, the frontend is not. It is therefore not advisable to upgrade existing Iceshrimp instances at present. Setting up staging instances to help us with testing is very appreciated, however, and will help us ensure eventual upgrades go as smoothly as possible. > -> We estimate there'll be a beta release sometime in June, and, if everything goes well, a stable release by the end of 2024. +> If everything goes well, we estimate that there'll be a stable release by the end of 2024. ---