From 46fe50d9fbe66039c83b47a479f60fb24663f262 Mon Sep 17 00:00:00 2001 From: BlackDex Date: Fri, 24 Jan 2025 10:56:57 +0100 Subject: [PATCH] Update server version in config endpoint Updated the server version reported to the clients to `2025.1.0`. This should make Vaultwarden future proof for the newer clients released by Bitwarden. Signed-off-by: BlackDex --- src/api/core/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs index 61868c0b..172bca42 100644 --- a/src/api/core/mod.rs +++ b/src/api/core/mod.rs @@ -210,8 +210,8 @@ fn config() -> Json { // This means they expect a version that closely matches the Bitwarden server version // We should make sure that we keep this updated when we support the new server features // Version history: - // - Individual cipher key encryption: 2023.9.1 - "version": "2024.2.0", + // - Individual cipher key encryption: 2024.2.0 + "version": "2025.1.0", "gitHash": option_env!("GIT_REV"), "server": { "name": "Vaultwarden",