chore: bump version

This commit is contained in:
Timo Ley 2023-02-01 19:52:03 +01:00
parent 75523bad63
commit 61dae438c3
8 changed files with 9 additions and 8 deletions

View File

@ -23,7 +23,7 @@ apply plugin: 'maven-publish'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
version = "2.0pr7-dirty"
version = "2.0pr8-dirty"
group= "com.eloraam.redpower"
archivesBaseName = "redpower"

View File

@ -69,10 +69,11 @@ import net.minecraftforge.oredict.OreDictionary;
@Mod(
modid = "RedPowerBase",
name = "RedPower Base",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerCore"
)
public class RedPowerBase implements IGuiHandler {
public static final String VERSION = "2.0pr8";
@Instance("RedPowerBase")
public static RedPowerBase instance;
public static BlockAppliance blockAppliance;

View File

@ -58,7 +58,7 @@ import net.minecraftforge.common.MinecraftForge;
@Mod(
modid = "RedPowerControl",
name = "RedPower Control",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerControl implements IGuiHandler {

View File

@ -34,7 +34,7 @@ import net.minecraftforge.common.MinecraftForge;
@Mod(
modid = "RedPowerLighting",
name = "RedPower Lighting",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerLighting {

View File

@ -49,7 +49,7 @@ import net.minecraftforge.common.MinecraftForge;
@Mod(
modid = "RedPowerLogic",
name = "RedPower Logic",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerLogic implements IGuiHandler {

View File

@ -137,7 +137,7 @@ import net.minecraftforge.common.MinecraftForge;
@Mod(
modid = "RedPowerMachine",
name = "RedPower Machine",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerMachine implements IGuiHandler {

View File

@ -37,7 +37,7 @@ import net.minecraftforge.common.MinecraftForge;
@Mod(
modid = "RedPowerWiring",
name = "RedPower Wiring",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerWiring {

View File

@ -62,7 +62,7 @@ import net.minecraftforge.oredict.OreDictionary;
@Mod(
modid = "RedPowerWorld",
name = "RedPower World",
version = "2.0pr7",
version = RedPowerBase.VERSION,
dependencies = "required-after:RedPowerBase"
)
public class RedPowerWorld implements IGuiHandler {