Skip to content

Commit

Permalink
3.2.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jriwanek committed Jan 9, 2018
1 parent ce41132 commit 4085bd3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
classpath 'gradle.plugin.com.matthewprenger:CurseGradle:1.0.9'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.5'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1'
}
}

Expand Down Expand Up @@ -72,7 +72,7 @@ minecraft {
version = '1.11.2-13.20.1.2386'
runDir = 'run'
mappings = 'stable_32'
// coreMod = ""
// coreMod = ''
makeObfSourceJar = false

replace '@FINGERPRINT@', project.findProperty('signSHA1')
Expand Down Expand Up @@ -254,7 +254,7 @@ curseforge {
project {
id = "245586"
changelog = file("CHANGELOG.txt")
releaseType = "alpha"
releaseType = "release"
def projName = "OreSpawn"
def displayVersion = getVersion("VERSION", mod_file)
if (System.getenv().BUILD_NUMBER) {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/mcmoddev/orespawn/OreSpawn.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;


import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/mcmoddev/orespawn/data/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ private static void saveKnownConfigs() {
File in = p.toFile();

JsonArray data = new JsonArray();
extractedConfigs.forEach( val -> data.add( new JsonPrimitive(val) ) );

extractedConfigs.forEach( val -> data.add(new JsonPrimitive(val)));

try {
FileUtils.writeStringToFile(in, gson.toJson(data), Charset.defaultCharset());
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mcmoddev/orespawn/data/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class Constants {
public static final String MODID = "orespawn";
public static final String NAME = "MMD OreSpawn";
public static final String VERSION = "3.2.0";
public static final String VERSION = "3.2.1";
public static final String RETROGEN_KEY = "Retrogen";
public static final String CONFIG_FILE = "config/orespawn.cfg";
public static final String FORCE_RETROGEN_KEY = "Force Retrogen";
Expand Down

0 comments on commit 4085bd3

Please sign in to comment.