Skip to content

Commit

Permalink
1.0.2 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
amadornes committed Jan 5, 2016
1 parent 7ea0dec commit bdcb6b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
}
*/

String modversion = "1.0.1"
String modversion = "1.0.2"

if (System.getenv("BUILD_NUMBER") != null && System.getenv("SHOW_BUILD_NUMBER") != null) {
version = modversion + "_" + System.getenv("BUILD_NUMBER")
Expand All @@ -37,6 +37,8 @@ minecraft {

mappings = "stable_20"
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.

replace "%VERSION%", project.version
}

dependencies {
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/mcmultipart/MCMultiPartMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.GameRegistry;

@Mod(modid = MCMultiPartMod.MODID, name = MCMultiPartMod.NAME)
@Mod(modid = MCMultiPartMod.MODID, name = MCMultiPartMod.NAME, version = MCMultiPartMod.VERSION,
acceptedMinecraftVersions = "[1.8.8,1.8.9]")
public class MCMultiPartMod {

public static final String MODID = "mcmultipart", NAME = "MCMultiPart";
public static final String MODID = "mcmultipart", NAME = "MCMultiPart", VERSION = "%VERSION%";

@SidedProxy(serverSide = MODID + ".MCMultiPartCommonProxy", clientSide = MODID + ".client.MCMultiPartClientProxy")
public static MCMultiPartCommonProxy proxy;
Expand Down

0 comments on commit bdcb6b8

Please sign in to comment.