From 5abf91b07870d093ed617c1783b375abd732105c Mon Sep 17 00:00:00 2001 From: Tomasz Kajetan Stanczak Date: Fri, 12 Jul 2019 17:59:18 +0100 Subject: [PATCH] [skip CI] version rc19 --- 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 894569d22c9..17e750d6a83 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.0.0-rc18dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; + Description = $"Nethermind/v1.0.0-rc19dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; } public static string Description { get; }