Skip to content

Commit

Permalink
Update version to 2.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FilUnderscore committed Aug 2, 2023
1 parent 69e2819 commit 6a4b262
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ImprovedHordes/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<ModManifest>
<ManifestUrl>https://raw.githubusercontent.com/FilUnderscore/ImprovedHordes/dev/ImprovedHordes/Manifest.xml</ManifestUrl>
<Version>2.0.0-beta.1</Version>
<GameVersion ReleaseType="Alpha" Major="21" Minor="0" Build="324"/>
<Version>2.0.0-beta.2</Version>
<GameVersion ReleaseType="Alpha" Major="21" Minor="1" Build="12"/>
</ModManifest>
2 changes: 1 addition & 1 deletion Source/ImprovedHordes/Core/ImprovedHordesCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ImprovedHordes.Core
public sealed class ImprovedHordesCore
{
private const ushort DATA_FILE_MAGIC = 0x4948;
private const uint DATA_FILE_VERSION = 6;
private const uint DATA_FILE_VERSION = 7;

private readonly ILoggerFactory loggerFactory;
private readonly IRandomFactory<IWorldRandom> randomFactory;
Expand Down
2 changes: 1 addition & 1 deletion Source/ImprovedHordes/IHVersionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace ImprovedHordes
{
public sealed class IHVersionManager
{
private static string VERSION = "-beta.1";
private static string VERSION = "-beta.2";
private static string BUILD_TYPE;

private readonly List<Mod> addons = new List<Mod>();
Expand Down

0 comments on commit 6a4b262

Please sign in to comment.