Skip to content

Commit 09e109c

Browse files
committed
Fix version number.
1 parent 260be68 commit 09e109c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/minecraftforge/common/ForgeVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ public class ForgeVersion
5252
//This number is incremented every time we remove deprecated code/major API changes, never reset
5353
public static final int majorVersion = 12;
5454
//This number is incremented every minecraft release, never reset
55-
public static final int minorVersion = 17;
55+
public static final int minorVersion = 18;
5656
//This number is incremented every time a interface changes or new major feature is added, and reset every Minecraft version
5757
public static final int revisionVersion = 0;
5858
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
59-
public static final int buildVersion = 9999;
59+
public static final int buildVersion = 0;
6060
// This is the minecraft version we're building for - used in various places in Forge/FML code
6161
public static final String mcVersion = "1.10";
6262
// This is the MCP data version we're using

0 commit comments

Comments
 (0)