From c203f5bc952fc53a491af90c5c46711e0ad24c06 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Mon, 6 Feb 2023 21:46:23 +0100 Subject: [PATCH] Fix default version --- Pal.Client/Configuration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pal.Client/Configuration.cs b/Pal.Client/Configuration.cs index 0e60483..5937914 100644 --- a/Pal.Client/Configuration.cs +++ b/Pal.Client/Configuration.cs @@ -17,7 +17,7 @@ namespace Pal.Client { private static readonly byte[] _entropy = { 0x22, 0x4b, 0xe7, 0x21, 0x44, 0x83, 0x69, 0x55, 0x80, 0x38 }; - public int Version { get; set; } = 4; + public int Version { get; set; } = 5; #region Saved configuration values public bool FirstUse { get; set; } = true;