Skip to content

Commit 99480e9

Browse files
authored
Update UpdateChecker.cs
1 parent c696277 commit 99480e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Netch/Controllers/UpdateChecker.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class UpdateChecker
1515
public const string Name = @"Netch";
1616
public const string Copyright = @"Copyright © 2019 - 2022";
1717

18-
public const string AssemblyVersion = @"1.9.6";
18+
public const string AssemblyVersion = @"1.9.7";
1919
private const string Suffix = @"";
2020

2121
public static readonly string Version = $"{AssemblyVersion}{(string.IsNullOrEmpty(Suffix) ? "" : $"-{Suffix}")}";
@@ -103,4 +103,4 @@ private static Release GetLatestRelease(IEnumerable<Release> releases, bool isPr
103103
var ordered = releases.OrderByDescending(release => release.tag_name, new VersionUtil.VersionComparer());
104104
return ordered.ElementAt(0);
105105
}
106-
}
106+
}

0 commit comments

Comments
 (0)