Skip to content

Commit

Permalink
1.0.0 Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
DeadlyMC committed Feb 9, 2019
1 parent 81b122c commit 2ebd0df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Probably one of the most comprehensive mods for carpet ever!
- Its a coremod
- Mod built using Forge
- Mod Version: 1.12.2
- Client side only atm (Don't worry u multiplayer guys.....server side is being worked upon)
- Client and Server side
- Every setting can be toggled on/off using `/carpet` command. Like u would do in original carpet
- Mod config file: `forgedcarpet.conf`

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'org.spongepowered.mixin'
apply plugin: "com.github.johnrengelman.shadow"
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.

version = "Alpha2"
version = "1.0.0"
group = "carpet.forge" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "ForgedCarpet"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/forge/CarpetSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class CarpetSettings {

public static boolean locked = false;
public static final String carpetVersion = "v18_12_20";
public static final String carpetVersion = "v1.0.0";

public static final Logger LOG = LogManager.getLogger();
private static final Map<String, CarpetSettingEntry> settings_store;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/forge/utils/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class Reference {

public static final String MOD_ID = "fc1122";
public static final String MOD_NAME = "ForgedCarpet";
public static final String VERSION = "Alpha2";
public static final String VERSION = "1.0.0";
public static final String ACCEPTED_MC_VERSIONS = "1.12.2";
public static final String CLIENT_PROXY_CLASS = "carpet.forge.proxy.ClientProxy";
public static final String SERVER_PROXY_CLASS = "carpet.forge.proxy.ServerProxy";
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "fc1122",
"name": "ForgedCarpet",
"description": "A Powerful Toolbox for Technical Minecraft",
"version": "Alpha2",
"version": "v1.0.0",
"mcversion": "1.12.2",
"url": "https://github.com/DeadlyMC/ForgedCarpet112",
"updateUrl": "",
Expand Down

0 comments on commit 2ebd0df

Please sign in to comment.