Skip to content

Commit

Permalink
Bump version to 0.9.13.0 (stable)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grantapher committed May 14, 2024
1 parent 3e83258 commit bf73e53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Note that alpha versions, while being compatible, have a higher likelihood of ha

## Valheim 0.218

### Valheim 0.217.11
* ✅ - `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`

## Valheim 0.217
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ The title screen and logs will *mostly* verify that the mod is working before yo
### Current Version Information

In the current mod release, you should have the following versions:
* Valheim version `0.217.38 (n-20)`
* Valheim version `0.218.15 (n-27)`
* BepInEx version `5.4.22.0`
* `BepInExPack_Valheim` version `5.4.2202`
* This can be verified via logs only.
* All the GitHub releases come with this version bundled.
* Thunderstore supports having this dependency and installing it for you via a mod manager.
* ValheimPlus version `0.9.12.0`
* ValheimPlus version `0.9.13.0`
* `(Grantapher Temporary)` will be appended to the title screen (not the log) to signify that it is not the official mod.

For more info on compatibility of various V+ and Valheim versions, check out [COMPATIBILITY.md](COMPATIBILITY.md).
Expand Down
4 changes: 2 additions & 2 deletions ValheimPlus/ValheimPlus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ValheimPlusPlugin : BaseUnityPlugin
public const string numericVersion = "0.9.13.0";

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

// Version used when numeric is NOT required (Logging, config file lookup)
public const string fullVersion = numericVersion + versionExtra;
Expand All @@ -37,7 +37,7 @@ public class ValheimPlusPlugin : BaseUnityPlugin
public static readonly GameVersion minSupportedGameVersion = new GameVersion(0, 218, 11);

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

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

0 comments on commit bf73e53

Please sign in to comment.