Skip to content

Commit

Permalink
2.3.0 Release for 1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jriwanek committed Feb 10, 2018
1 parent 583d8e2 commit 29f9f1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,23 @@ buildscript {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = 'gradle'
url 'https://plugins.gradle.org/m2/'
}
maven {
name = "sonatype"
url = 'https://oss.sonatype.org/content/groups/public'
}
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT"
classpath "com.matthewprenger:CurseGradle:1.0-SNAPSHOT"
classpath 'gradle.plugin.com.matthewprenger:CurseGradle:1.0.10'
}
}

apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: "com.matthewprenger.cursegradle"
apply plugin: 'com.matthewprenger.cursegradle'

def mod_file = getModFile()
version = getVersion("VERSION", mod_file)
Expand All @@ -26,7 +30,7 @@ archivesBaseName = "CyanosWonderfulWands_1.11.2"
sourceCompatibility = targetCompatibility = "1.8"

minecraft {
version = "1.11.2-13.20.0.2228"
version = "1.11.2-13.20.1.2386"
runDir = "run"
mappings = "stable_32"
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/cyano/wonderfulwands/WonderfulWands.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
import java.util.Map;

@Mod(modid = WonderfulWands.MODID, name=WonderfulWands.NAME, version = WonderfulWands.VERSION,
acceptedMinecraftVersions = "[1.10.2,)")
acceptedMinecraftVersions = "[1.11.2,)")
public class WonderfulWands {
public static final String MODID = "wonderfulwands";
public static final String NAME ="Cyano's Wonderful Wands";
public static final String VERSION = "2.2.0";
public static final String VERSION = "2.3.0";

@SidedProxy(clientSide="cyano.wonderfulwands.ClientProxy", serverSide="cyano.wonderfulwands.ServerProxy")
public static Proxy proxy;
Expand Down

0 comments on commit 29f9f1f

Please sign in to comment.