Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ThexXTURBOXx committed Sep 3, 2022
1 parent 997cdd7 commit b0d898f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = "0.7.6"
version = "0.7.7"
group = "org.silvercatcher.reforged"
archivesBaseName = "reforged"

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/silvercatcher/reforged/ReforgedMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ReforgedMod {

public static final String NAME = "Reforged";
public static final String ID = "reforged";
public static final String VERSION = "0.7.6";
public static final String VERSION = "0.7.7";
public static final String UPDATE_JSON = "https://raw.githubusercontent"
+ ".com/ThexXTURBOXx/UpdateJSONs/master/reforged.json";

Expand All @@ -47,8 +47,8 @@ public ItemStack createIcon() {
@Instance(ID)
public static ReforgedMod instance;

@SidedProxy(modId = ID, clientSide = "org.silvercatcher.reforged.proxy.ClientProxy", serverSide = "org"
+ ".silvercatcher.reforged.proxy.CommonProxy")
@SidedProxy(modId = ID, clientSide = "org.silvercatcher.reforged.proxy.ClientProxy",
serverSide = "org.silvercatcher.reforged.proxy.CommonProxy")
public static CommonProxy proxy;

@EventHandler
Expand Down

0 comments on commit b0d898f

Please sign in to comment.