From f89a1d57d94f6bf9af5937c912e821273d09afb1 Mon Sep 17 00:00:00 2001 From: rampaa Date: Sat, 2 Apr 2022 19:06:43 +0300 Subject: [PATCH] Bump version number --- JL.Core/Storage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JL.Core/Storage.cs b/JL.Core/Storage.cs index cbc02980..15618064 100644 --- a/JL.Core/Storage.cs +++ b/JL.Core/Storage.cs @@ -25,7 +25,7 @@ public static class Storage public static readonly string ResourcesPath = Path.Join(AppContext.BaseDirectory, "Resources"); public static readonly string ConfigPath = Path.Join(AppContext.BaseDirectory, "Config"); public static readonly HttpClient Client = new(new HttpClientHandler { UseProxy = false }); - public static readonly Version Version = new(1, 7); + public static readonly Version Version = new(1, 8); public static readonly string RepoUrl = "https://github.com/rampaa/JL/"; public static bool Ready { get; set; } = false; public static bool UpdatingJMdict { get; set; } = false;