From 183ea727b51a5a12574c28d972c61f79215c59a6 Mon Sep 17 00:00:00 2001 From: Tomasz Kajetan Stanczak Date: Thu, 4 Jul 2019 02:55:52 +0100 Subject: [PATCH] rc16 --- 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 8ee265999cd..89c6921b8b8 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-rc15dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; + Description = $"Nethermind/v1.0.0-rc16dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}"; } public static string Description { get; }