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 sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8
version = "2.0pr7-dirty" version = "2.0pr8-dirty"
group= "com.eloraam.redpower" group= "com.eloraam.redpower"
archivesBaseName = "redpower" archivesBaseName = "redpower"

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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