We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1075ba4 commit 712d3edCopy full SHA for 712d3ed
src/Nethermind/Nethermind.Core/Version.cs
@@ -37,7 +37,7 @@ static ClientVersion()
37
string gitHash = File.Exists("git-hash") ? File.ReadAllText("git-hash") : string.Empty;
38
gitHash = Regex.Match(gitHash, "\\-g(\\w+)").Groups[1].Value;
39
40
- Description = $"Nethermind/v1.0.2-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
+ Description = $"Nethermind/v1.0.3-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
41
}
42
43
public static string Description { get; }
0 commit comments