Skip to content

Commit ef167f3

Browse files
1.21.6 update (#67)
* 1.21.6 update * Add explicit compile time warns This is just good measure like we do in Meteor itself, let the developers know if they're doing some funky casting and ask for proper warning suppression on the spot. * Stinky warn
1 parent 4919c88 commit ef167f3

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ trim_trailing_whitespace = true
66
indent_size = 4
77
ij_continuation_indent_size = 4
88

9-
[*.{json, yml}]
9+
[*.{json,yml}]
1010
indent_size = 2
1111

1212
[*.md]

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,7 @@ tasks {
6161
withType<JavaCompile> {
6262
options.encoding = "UTF-8"
6363
options.release = 21
64+
options.compilerArgs.add("-Xlint:deprecation")
65+
options.compilerArgs.add("-Xlint:unchecked")
6466
}
6567
}

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ org.gradle.jvmargs=-Xmx2G
22
org.gradle.configuration-cache=true
33

44
# Fabric Properties (https://fabricmc.net/develop)
5-
minecraft_version=1.21.5
6-
yarn_mappings=1.21.5+build.1
7-
loader_version=0.16.12
5+
minecraft_version=1.21.6
6+
yarn_mappings=1.21.6+build.1
7+
loader_version=0.16.14
88

99
# Mod Properties
1010
mod_version=0.1.0

gradle/wrapper/gradle-wrapper.jar

181 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)