Skip to content

Commit

Permalink
Bump version to 0.9.14.0-alpha01
Browse files Browse the repository at this point in the history
  • Loading branch information
Grantapher committed May 29, 2024
1 parent 5864508 commit 64d3971
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ sometimes have minor differences that require extra effort to offer compatibilit
Note that alpha versions, while being compatible, have a higher likelihood of having bugs.

## Valheim 0.218
* ✅ - `Valheim 0.218.16 (n-28)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.14.0-alpha01`

### Valheim 0.218.15
* ✅ - `Valheim 0.218.15 (n-27)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0`
* ✅ - `Valheim 0.218.14 (n-26)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0-alpha02`
* ✅ - `Valheim 0.218.11 (n-24)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0-alpha01`
Expand Down
8 changes: 4 additions & 4 deletions ValheimPlus/ValheimPlus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ namespace ValheimPlus
public class ValheimPlusPlugin : BaseUnityPlugin
{
// Version used when numeric is required (assembly info, bepinex, System.Version parsing).
public const string numericVersion = "0.9.13.0";
public const string numericVersion = "0.9.14.0";

// Extra version, like alpha/beta/rc/stable. Can leave blank if a stable release.
public const string versionExtra = "";
public const string versionExtra = "-alpha01";

// Version used when numeric is NOT required (Logging, config file lookup)
public const string fullVersion = numericVersion + versionExtra;
Expand All @@ -34,10 +34,10 @@ public class ValheimPlusPlugin : BaseUnityPlugin
public const string minRequiredNumericVersion = numericVersion;

// The lowest game version this version of V+ is known to work with.
public static readonly GameVersion minSupportedGameVersion = new GameVersion(0, 218, 11);
public static readonly GameVersion minSupportedGameVersion = new GameVersion(0, 218, 16);

// The game version this version of V+ was compiled against.
public static readonly GameVersion targetGameVersion = new GameVersion(0, 218, 15);
public static readonly GameVersion targetGameVersion = new GameVersion(0, 218, 16);

public static string newestVersion = "";
public static bool isUpToDate = false;
Expand Down

0 comments on commit 64d3971

Please sign in to comment.