From 8e94139832474f6e99d6e0a2c7a7f96a88e463d6 Mon Sep 17 00:00:00 2001 From: Tomasz Kajetan Stanczak Date: Sun, 30 Jun 2019 01:29:33 +0100 Subject: [PATCH] rc14 version --- 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 3cd259d1a0d..f8365e34bc8 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-rc13dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; + Description = $"Nethermind/v1.0.0-rc14dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; } public static string Description { get; }