Skip to content

Commit

Permalink
Update UpdateChecker.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
netch-org committed Jun 24, 2022
1 parent c696277 commit 99480e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Netch/Controllers/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}")}";
Expand Down Expand Up @@ -103,4 +103,4 @@ private static Release GetLatestRelease(IEnumerable<Release> releases, bool isPr
var ordered = releases.OrderByDescending(release => release.tag_name, new VersionUtil.VersionComparer());
return ordered.ElementAt(0);
}
}
}

0 comments on commit 99480e9

Please sign in to comment.