Skip to content

Commit

Permalink
version bumb for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabsenet committed Mar 21, 2017
1 parent a0302a7 commit f301d29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adrilight/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ namespace adrilight {

public partial class MainForm : Form
{
private const string CURRENT_VERSION = "0.1.3-alpha";

private readonly ILogger _log = LogManager.GetCurrentClassLogger();

Expand All @@ -45,7 +46,7 @@ private void StartVersionCheck()
{
try
{
var currentVersion = SemVersion.Parse("0.1.2-alpha");
var currentVersion = SemVersion.Parse(CURRENT_VERSION);

dynamic latestRelease = TryGetLatestReleaseData().Result;
if (latestRelease == null) return;
Expand Down

0 comments on commit f301d29

Please sign in to comment.