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; }