Skip to content

Commit

Permalink
Bump deps and versions for 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Aizistral committed Oct 28, 2024
1 parent 3cd5043 commit 77900f9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.apache.tools.ant.taskdefs.condition.Os

plugins {
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'fabric-loom' version '1.8-SNAPSHOT'
id 'maven-publish'
id "com.modrinth.minotaur" version "2.+"
id "com.matthewprenger.cursegradle" version "1.+"
Expand Down Expand Up @@ -158,6 +158,7 @@ curseforge {
mainArtifact(remapJar)

addGameVersion project.minecraft_version
addGameVersion '1.21'
addGameVersion 'Quilt'
addGameVersion 'Fabric'
addGameVersion 'Java 21'
Expand Down Expand Up @@ -190,7 +191,7 @@ modrinth {
versionType = "${version_type}"
changelog = rootProject.file("docs/CHANGELOG.md").text
uploadFile = remapJar
gameVersions = [ project.minecraft_version ]
gameVersions = [ project.minecraft_version, '1.21' ]
loaders = ['fabric', 'quilt']

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ curseforge {
changelog = rootProject.file('docs/CHANGELOG.md')

addGameVersion project.minecraft_version
addGameVersion '1.21'
addGameVersion "Java 21"
addGameVersion "Forge"

Expand All @@ -211,7 +212,7 @@ modrinth {
versionType = "${version_type}"
changelog = rootProject.file("docs/CHANGELOG.md").text
uploadFile = jar
gameVersions = [ project.minecraft_version ]
gameVersions = [ project.minecraft_version, '1.21' ]

syncBodyFrom = rootProject.file("docs/README.md").text
}
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.daemon=false

# Toolchain Properties
minecraft_version=1.21
yarn_mappings=1.21+build.2
fabric_loader_version=0.15.11
forge_version=1.21-51.0.8
neoforge_version=21.0.16-beta
minecraft_version=1.21.1
yarn_mappings=1.21.1+build.3
fabric_loader_version=0.16.7
forge_version=1.21.1-52.0.24
neoforge_version=21.1.73

# Mod Properties
mod_version=1.21-v2.8.0
mod_version=1.21.1-v2.9.0
maven_group=com.aizistral.nochatreports
archives_base_name=NoChatReports-FABRIC
mod_id=nochatreports
Expand All @@ -23,7 +23,7 @@ mod_icon=assets/nochatreports/textures/misc/ncr_logo.png
mod_license=WTFPL

# Dependencies
fabric_version=0.100.3+1.21
fabric_version=0.107.0+1.21.1
mod_menu_version=11.0.0-rc.4
cloth_config_version=15.0.127

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 3 additions & 2 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
id 'eclipse'
id 'idea'
id "com.modrinth.minotaur" version "2.+"
id 'net.neoforged.gradle.userdev' version '7.0.142'
id 'net.neoforged.gradle.userdev' version '7.0.145'
}

println("Applying plugins...")
Expand Down Expand Up @@ -170,6 +170,7 @@ curseforge {
changelog = rootProject.file('docs/CHANGELOG.md')

addGameVersion project.minecraft_version
addGameVersion '1.21'
addGameVersion "Java 21"
addGameVersion "NeoForge"

Expand All @@ -186,7 +187,7 @@ modrinth {
versionType = "${version_type}"
changelog = rootProject.file("docs/CHANGELOG.md").text
uploadFile = jar
gameVersions = [ project.minecraft_version ]
gameVersions = [ project.minecraft_version, '1.21' ]

syncBodyFrom = rootProject.file("docs/README.md").text
}
Expand Down

0 comments on commit 77900f9

Please sign in to comment.