Skip to content

Commit 906c3a6

Browse files
committed
Update plugin version.
1 parent e95faa0 commit 906c3a6

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

Hearthstone Collection Tracker/Hearthstone Collection Tracker.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
<Compile Include="Internal\DataUpdaters\DataUpdaterV031.cs" />
9797
<Compile Include="Internal\DataUpdaters\DataUpdaterV032.cs" />
9898
<Compile Include="Internal\DataUpdaters\DataUpdaterV04.cs" />
99+
<Compile Include="Internal\DataUpdaters\DataUpdaterV05.cs" />
99100
<Compile Include="Internal\DataUpdaters\DataUpdaterV041.cs" />
100101
<Compile Include="Internal\DataUpdaters\DefaultDataUpdater.cs" />
101102
<Compile Include="Internal\DataUpdaters\IDataUpdater.cs" />

Hearthstone Collection Tracker/HearthstoneCollectionTrackerPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public string Author
161161
get { return "Vasilev Konstantin"; }
162162
}
163163

164-
public static readonly Version PluginVersion = new Version(0, 4, 1);
164+
public static readonly Version PluginVersion = new Version(0, 5, 0);
165165

166166
public Version Version
167167
{
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
3+
namespace Hearthstone_Collection_Tracker.Internal.DataUpdaters
4+
{
5+
public class DataUpdaterV05 : BaseUpdaterByVersion
6+
{
7+
private static readonly Version _version = new Version(0, 5, 0);
8+
9+
public override Version Version
10+
{
11+
get
12+
{
13+
return _version;
14+
}
15+
}
16+
}
17+
}

Hearthstone Collection Tracker/Internal/DataUpdaters/DefaultDataUpdater.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ public static class DefaultDataUpdater
1414
new DataUpdaterV031(),
1515
new DataUpdaterV032(),
1616
new DataUpdaterV04(),
17-
new DataUpdaterV041()
17+
new DataUpdaterV041(),
18+
new DataUpdaterV05()
1819
};
1920

2021
/// <summary>

0 commit comments

Comments
 (0)