diff --git a/Netch/Controllers/UpdateChecker.cs b/Netch/Controllers/UpdateChecker.cs index eefff1da8a..e154d624a6 100644 --- a/Netch/Controllers/UpdateChecker.cs +++ b/Netch/Controllers/UpdateChecker.cs @@ -15,7 +15,7 @@ public static class UpdateChecker public const string Name = @"Netch"; public const string Copyright = @"Copyright © 2019 - 2022"; - public const string AssemblyVersion = @"1.9.6"; + public const string AssemblyVersion = @"1.9.7"; private const string Suffix = @""; public static readonly string Version = $"{AssemblyVersion}{(string.IsNullOrEmpty(Suffix) ? "" : $"-{Suffix}")}"; @@ -103,4 +103,4 @@ private static Release GetLatestRelease(IEnumerable releases, bool isPr var ordered = releases.OrderByDescending(release => release.tag_name, new VersionUtil.VersionComparer()); return ordered.ElementAt(0); } -} \ No newline at end of file +}