We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0813f commit 47c4e5eCopy full SHA for 47c4e5e
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/v0.9.9-dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
+ Description = $"Nethermind/v0.9.9-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
41
}
42
43
public static string Description { get; }
0 commit comments