From f691fafb782ff1e6a8393e80148ede39c347059a Mon Sep 17 00:00:00 2001 From: Tomasz Kajetan Stanczak Date: Fri, 25 Oct 2019 13:31:29 +0100 Subject: [PATCH] version 1.1.3 --- src/Nethermind/Nethermind.Core/Version.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nethermind/Nethermind.Core/Version.cs b/src/Nethermind/Nethermind.Core/Version.cs index a84a977b522..baae5366b51 100644 --- a/src/Nethermind/Nethermind.Core/Version.cs +++ b/src/Nethermind/Nethermind.Core/Version.cs @@ -37,7 +37,7 @@ static ClientVersion() string gitHash = File.Exists("git-hash") ? File.ReadAllText("git-hash") : string.Empty; gitHash = Regex.Match(gitHash, "\\-g(\\w+)").Groups[1].Value; - Description = $"Nethermind/v1.1.2-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; + Description = $"Nethermind/v1.1.3-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; } public static string Description { get; }