Skip to content

Commit

Permalink
Bump mod version
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed May 21, 2019
1 parent 92cec76 commit 8885d72
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
mod_version=1.7.1
mod_version=1.7.2
minecraft_version=1.12.2
forge_version=14.23.5.2768
mcp_mappings_version=snapshot_20180814
cyclopscore_version=1.2.1-946
cyclopscore_version=1.3.0-949
release_type=release
fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44

ironchest_version=7.0.9.796
commoncapabilities_version=1.12.2-2.3.0-289
commoncapabilities_version=1.12.2-2.4.0-292
6 changes: 6 additions & 0 deletions resources/changelog/1.12.2-1.7.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
As always, don't forget to backup your world before updating!
Requires CyclopsCore version 1.3.0 or higher.

Fixes:
* Fix Integrated Crafting not working with jobs with 64+ items
Closes CyclopsMC/IntegratedCrafting#27
7 changes: 5 additions & 2 deletions src/main/java/org/cyclops/colossalchests/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ public class Reference {
public static final String MOD_FORGE_VERSION_MIN = "14.23.5.2768";
public static final String MOD_CYCLOPSCORE = "cyclopscore";
public static final String MOD_CYCLOPSCORE_VERSION = "@CYCLOPSCORE_VERSION@";
public static final String MOD_CYCLOPSCORE_VERSION_MIN = "1.1.0";
public static final String MOD_CYCLOPSCORE_VERSION_MIN = "1.3.0";
public static final String MOD_COMMONCAPABILITIES = "commoncapabilities";
public static final String MOD_COMMONCAPABILITIES_VERSION_MIN = "2.4.0";
public static final String MOD_IRONCHEST = "ironchest";

// Dependencies
public static final String MOD_DEPENDENCIES =
"required-after:" + MOD_FORGE + "@[" + MOD_FORGE_VERSION_MIN + ",);" +
"required-after:" + MOD_CYCLOPSCORE + "@[" + MOD_CYCLOPSCORE_VERSION_MIN + ",);";
"required-after:" + MOD_CYCLOPSCORE + "@[" + MOD_CYCLOPSCORE_VERSION_MIN + ",);" +
"after:" + MOD_COMMONCAPABILITIES + "@[" + MOD_COMMONCAPABILITIES_VERSION_MIN + ",);";
}

0 comments on commit 8885d72

Please sign in to comment.