Skip to content

Commit

Permalink
Fix 1.20.1 version (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt authored Dec 16, 2023
1 parent 9da32a9 commit befdc5d
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ plugins {

Util.init() //Init all our extension methods!

gradleutils.version {
branches {
suffixBranch = true
suffixExemptedBranch '1.20.1'
}
}

ext {
JAR_SIGNER = null
if (project.hasProperty('keystore')) {
Expand Down Expand Up @@ -87,17 +80,27 @@ ext {
JOPT_SIMPLE_VERSION = '5.0.4'
COMMONS_IO_VERSION = '2.11.0'

GIT_INFO = gradleutils.gitInfo
VERSION = gradleutils.version.toString()
FORGE_VERSION = VERSION.substring(MC_VERSION.length() + 1)

BINPATCH_TOOL = 'net.minecraftforge:binarypatcher:1.1.1:fatjar'
INSTALLER_TOOLS = 'net.minecraftforge:installertools:1.3.0'
JAR_SPLITTER = 'net.minecraftforge:jarsplitter:1.1.4'
FART = 'net.minecraftforge:ForgeAutoRenamingTool:0.1.22:all'
MIN_TAG_FOR_CHANGELOG = '41.0'
}

gradleutils.version {
versionPrefix MC_VERSION
branches {
suffixBranch = true
suffixExemptedBranch '1.20.1'
}
}

ext {
GIT_INFO = gradleutils.gitInfo
VERSION = gradleutils.version.toString()
FORGE_VERSION = VERSION.substring(MC_VERSION.length() + 1)
}

logger.lifecycle('NeoForge version: {}', VERSION)

changelog {
Expand Down

0 comments on commit befdc5d

Please sign in to comment.