Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
hotfix: incorrect internal version
Browse files Browse the repository at this point in the history
  • Loading branch information
depthbomb committed Feb 28, 2023
1 parent dfa1cc0 commit 513269c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scraps/GlobalShared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public enum ReleaseTypes
public static Version VersionAsDotNet() => new(MajorVersion, MinorVersion, PatchVersion, HotfixVersion);
public const int MajorVersion = 5;
public const int MinorVersion = 3;
public const int PatchVersion = 3;
public const int PatchVersion = 4;
public const int HotfixVersion = 0;
public const ReleaseTypes VersionReleaseType = ReleaseTypes.Release;
public static string SemVerVersion => $"{MajorVersion}.{MinorVersion}.{PatchVersion}.{HotfixVersion}";
Expand Down

0 comments on commit 513269c

Please sign in to comment.