Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit f301d29

Browse files
committed
version bumb for new release
1 parent a0302a7 commit f301d29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adrilight/MainForm.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ namespace adrilight {
1919

2020
public partial class MainForm : Form
2121
{
22+
private const string CURRENT_VERSION = "0.1.3-alpha";
2223

2324
private readonly ILogger _log = LogManager.GetCurrentClassLogger();
2425

@@ -45,7 +46,7 @@ private void StartVersionCheck()
4546
{
4647
try
4748
{
48-
var currentVersion = SemVersion.Parse("0.1.2-alpha");
49+
var currentVersion = SemVersion.Parse(CURRENT_VERSION);
4950

5051
dynamic latestRelease = TryGetLatestReleaseData().Result;
5152
if (latestRelease == null) return;

0 commit comments

Comments
 (0)