Skip to content

Commit

Permalink
Update plugin version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-vasilev committed Jun 22, 2016
1 parent e95faa0 commit 906c3a6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
<Compile Include="Internal\DataUpdaters\DataUpdaterV031.cs" />
<Compile Include="Internal\DataUpdaters\DataUpdaterV032.cs" />
<Compile Include="Internal\DataUpdaters\DataUpdaterV04.cs" />
<Compile Include="Internal\DataUpdaters\DataUpdaterV05.cs" />
<Compile Include="Internal\DataUpdaters\DataUpdaterV041.cs" />
<Compile Include="Internal\DataUpdaters\DefaultDataUpdater.cs" />
<Compile Include="Internal\DataUpdaters\IDataUpdater.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public string Author
get { return "Vasilev Konstantin"; }
}

public static readonly Version PluginVersion = new Version(0, 4, 1);
public static readonly Version PluginVersion = new Version(0, 5, 0);

public Version Version
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;

namespace Hearthstone_Collection_Tracker.Internal.DataUpdaters
{
public class DataUpdaterV05 : BaseUpdaterByVersion
{
private static readonly Version _version = new Version(0, 5, 0);

public override Version Version
{
get
{
return _version;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public static class DefaultDataUpdater
new DataUpdaterV031(),
new DataUpdaterV032(),
new DataUpdaterV04(),
new DataUpdaterV041()
new DataUpdaterV041(),
new DataUpdaterV05()
};

/// <summary>
Expand Down

0 comments on commit 906c3a6

Please sign in to comment.