We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151ddb6 commit 167dba6Copy full SHA for 167dba6
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.6-dev-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
+ Description = $"Nethermind/v0.9.6-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
41
}
42
43
// public static readonly string Description = $"Nethermind/v0.9.0-eth63test/{RuntimeInformation.OSArchitecture}-{RuntimeInformation.OSDescription.Trim().Replace(" ", "_")}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
0 commit comments