Skip to content

Commit

Permalink
Merge pull request #8 from BlazingTwist/1.21.0
Browse files Browse the repository at this point in the history
Update for 1.21.0
  • Loading branch information
BlazingTwist authored Jul 6, 2024
2 parents 732662f + 939ad82 commit 6fe269f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
# Use these Java versions
java: [
17, # Minimum Minecraft supported version
21, # Minimum Minecraft supported version
]
# and run on both Linux and Windows
os: [ubuntu-20.04, windows-2022]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Anti Tool Break

A Minecraft [Fabric](https://fabricmc.net/) mod stops you from breaking your tools.
Built for version 1.20.0
Built for version 1.21.0

[Curseforge release](https://www.curseforge.com/minecraft/mc-mods/anti-tool-break-fabric)

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.1-SNAPSHOT'
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'maven-publish'
}

Expand Down Expand Up @@ -29,10 +29,10 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

modImplementation("me.shedaniel.cloth:cloth-config-fabric:[11.0,12.0)") {
modImplementation("me.shedaniel.cloth:cloth-config-fabric:[15.0,16.0)") {
exclude(group: "net.fabricmc.fabric-api")
}
modImplementation("com.terraformersmc:modmenu:[7.0,8.0)") {
modImplementation("com.terraformersmc:modmenu:[11.0,12.0)") {
exclude group: "net.fabricmc.fabric-api"
}
}
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.20
yarn_mappings=1.20+build.1
loader_version=0.14.21
minecraft_version=1.21
yarn_mappings=1.21+build.2
loader_version=0.15.11

# Mod Properties
mod_version = 1.0.0
maven_group = blazingtwist
archives_base_name = antitoolbreak

# Dependencies
fabric_version=0.83.0+1.20
fabric_version=0.100.3+1.21
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
],

"depends": {
"fabricloader": ">=0.14.21",
"fabricloader": ">=0.15.11",
"fabric": "*",
"minecraft": "~1.20",
"minecraft": "~1.21",
"java": ">=17"
},
"suggests": {
Expand Down

0 comments on commit 6fe269f

Please sign in to comment.