Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 committed Aug 12, 2024
1 parent e877eb5 commit 577fe02
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 17 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ Make sure to clear after release
Put changelog here:

-----------------
- Updated Kotlin to 2.0.0
- Updated minimum FLK to 1.11.0+kotlin.2.0.0
- Updated Kotlin to 2.0.10
- Updated minimum FLK to 1.12.0+kotlin.2.0.10
- Updated Tiny Remapper to 0.10.4
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ buildscript {
}

plugins {
id("fabric-loom") version("1.6.+")
id("fabric-loom") version("+")
id("org.ajoberstar.grgit") version("+")
id("com.modrinth.minotaur") version("+")
`maven-publish`
eclipse
idea
`java-library`
java
kotlin("jvm") version("2.0.0")
kotlin("jvm") version("2.0.10")
}

val minecraftVersion: String by project
Expand All @@ -52,7 +52,7 @@ version = getVersion()
group = mavenGroup

val supportedMcVersions: List<String> = listOf(
"1.21",
"1.21.1", "1.21",
"1.20.6", "1.20.5", "1.20.4", "1.20.2", "1.20.1", "1.20",
"1.19.4", "1.19.3", "1.19.2", "1.19.1", "1.19",
"1.18.2", "1.18.1", "1.18",
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ org.gradle.caching=true

# Fabric Properties
# Get new versions at https://fabricmc.net/develop and https://lambdaurora.dev/tools/import_quilt.html
minecraftVersion=1.21
quiltMappings=1.21-pre4+build.1
minecraftVersion=1.21.1
quiltMappings=1.21+build.18
parchmentMappings=1.20.6:2024.05.01
loaderVersion=0.15.11
loaderVersion=0.16.0

# Mod Properties
modId = fabric_kotlin_extensions
modVersion = 1.1
modVersion = 1.1.1
modLoader = Fabric
mavenGroup = net.frozenblock
baseName = FabricKotlinExtensions

# Dependencies
fabricKotlinVersion=1.11.0+kotlin.2.0.0
fabricKotlinVersion=1.12.0+kotlin.2.0.10
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
7 changes: 5 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
`java-library`
java
id("com.github.johnrengelman.shadow") version("+")
kotlin("jvm") version("2.0.0")
kotlin("jvm") version("2.0.10")
}

val modId: String by project
Expand Down Expand Up @@ -39,7 +39,7 @@ dependencies {
shadowInclude(kotlin("scripting-dependencies-maven"))

shadowInclude("net.fabricmc:mapping-io:0.6.1")
shadowInclude("net.fabricmc:tiny-remapper:0.10.3")
shadowInclude("net.fabricmc:tiny-remapper:0.10.4")
}

kotlin {
Expand Down
4 changes: 2 additions & 2 deletions library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ org.gradle.caching=true

# Project Properties
modId = kotlin_library_extensions
projectVersion = 1.1
projectVersion = 1.1.1
mavenGroup = net.frozenblock
baseName = KotlinLibraryExtensions

# Dependencies
fabricKotlinVersion=1.11.0+kotlin.2.0.0
fabricKotlinVersion=1.12.0+kotlin.2.0.10

0 comments on commit 577fe02

Please sign in to comment.