Skip to content

Commit

Permalink
1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 committed Dec 18, 2024
1 parent 38ab283 commit e450a71
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 18 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.21
- Updated minimum FLK to 1.12.3+kotlin.2.0.21
- Updated Kotlin to 2.1.0
- Removed legacy `kotlinx-metadata-jvm` library
- Updated minimum FLK to 1.13.0+kotlin.2.1.0
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
idea
`java-library`
java
kotlin("jvm") version("2.0.21")
kotlin("jvm") version("2.1.0")
}

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

val supportedMcVersions: List<String> = listOf(
"1.21.1", "1.21",
"1.21.4", "1.21.3", "1.21.2", "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 Expand Up @@ -85,7 +85,7 @@ dependencies {
mappings(loom.layered {
// please annoy treetrain if this doesnt work
mappings("org.quiltmc:quilt-mappings:$quiltMappings:intermediary-v2")
parchment("org.parchmentmc.data:parchment-$parchmentMappings@zip")
//parchment("org.parchmentmc.data:parchment-$parchmentMappings@zip")
officialMojangMappings {
nameSyntheticMembers = false
}
Expand Down
12 changes: 5 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,20 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true
# Caches Dependencies for faster build times.
org.gradle.caching=true
# K2 compiler testing, disable for production
#kotlin.experimental.tryK2=true

# Fabric Properties
# Get new versions at https://fabricmc.net/develop and https://lambdaurora.dev/tools/import_quilt.html
minecraftVersion=1.21.1
quiltMappings=1.21+build.18
parchmentMappings=1.20.6:2024.05.01
minecraftVersion=1.21.4
quiltMappings=1.21.4+build.2
parchmentMappings=1.21.4:2024.12.07
loaderVersion=0.16.9

# Mod Properties
modId = fabric_kotlin_extensions
modVersion = 1.1.2
modVersion = 1.1.3
modLoader = Fabric
mavenGroup = net.frozenblock
baseName = FabricKotlinExtensions

# Dependencies
fabricKotlinVersion=1.12.3+kotlin.2.0.21
fabricKotlinVersion=1.13.0+kotlin.2.1.0
2 changes: 0 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ repositories {
}

dependencies {
shadowInclude("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.9.0")

shadowInclude(kotlin("scripting-jvm"))
shadowInclude(kotlin("scripting-jvm-host"))
shadowInclude(kotlin("scripting-jsr223"))
Expand Down
6 changes: 2 additions & 4 deletions library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true
# Caches Dependencies for faster build times.
org.gradle.caching=true
# K2 compiler testing, disable for production
#kotlin.experimental.tryK2=true

# Project Properties
modId = kotlin_library_extensions
projectVersion = 1.1.2
projectVersion = 1.1.3
mavenGroup = net.frozenblock
baseName = KotlinLibraryExtensions

# Dependencies
fabricKotlinVersion=1.12.3+kotlin.2.0.21
fabricKotlinVersion=1.13.0+kotlin.2.1.0

0 comments on commit e450a71

Please sign in to comment.