Bump version to 9.10 for new MC version and removal of Fluids.

This commit is contained in:
LexManos 2013-07-07 14:05:48 -07:00
parent 9b5208fa30
commit 51ca5e028b
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ package net.minecraftforge.common;
public class ForgeVersion
{
//This number is incremented every time we remove deprecated code/major API changes, never reset
public static final int majorVersion = 8;
public static final int majorVersion = 9;
//This number is incremented every minecraft release, never reset
public static final int minorVersion = 9;
public static final int minorVersion = 10;
//This number is incremented every time a interface changes or new major feature is added, and reset every Minecraft version
public static final int revisionVersion = 0;
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.