Skip to content

Commit

Permalink
update MC and forge versions in toml and gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Jan 6, 2020
1 parent 32a06a1 commit dcfc0c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -30,13 +30,13 @@ subprojects {
apply from: rootProject.file('common.gradle')
}

version = '5.0.1'
version = '6.0.0'
if (System.getenv('BUILD_NUMBER') != null) {
version += "." + System.getenv('BUILD_NUMBER')
}

group = 'com.blamejared.crafttweaker'
archivesBaseName = 'CraftTweaker-1.14.4'
archivesBaseName = 'CraftTweaker-1.15.1'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.

Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/mods.toml
@@ -1,5 +1,5 @@
modLoader="javafml"
loaderVersion="[26,)"
loaderVersion="[30,)"
issueTrackerURL="https://github.com/CraftTweaker/CraftTweaker/issues"
[[mods]]
modId="crafttweaker"
Expand All @@ -12,12 +12,12 @@ description="Customize your minecraft experience!"
[[dependencies.examplemod]]
modId="forge"
mandatory=true
versionRange="[26,)"
versionRange="[30,)"
ordering="NONE"
side="BOTH"
[[dependencies.examplemod]]
modId="minecraft"
mandatory=true
versionRange="[1.14.4]"
versionRange="[1.15.1]"
ordering="NONE"
side="BOTH"

0 comments on commit dcfc0c7

Please sign in to comment.