diff --git a/README.md b/README.md index fd32553..12f161a 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,10 @@ Add it as a dependency to your Gradle project: ```kotlin dependencies { - modImplementation("net.fabricmc:fabric-language-kotlin:1.12.3+kotlin.2.1.0") + modImplementation("net.fabricmc:fabric-language-kotlin:1.13.0+kotlin.2.1.0") } ``` -> **_NOTE:_** Kotlin 2.1 or later requires Loom 1.9 or later. - ### Adapter Use the `kotlin` adapter for your mod by setting the `adapter` property in the `fabric.mod.json` file. @@ -37,7 +35,7 @@ Remember to the add a dependency entry to your `fabric.mod.json` file: ] }, "depends": { - "fabric-language-kotlin": ">=1.12.3+kotlin.2.1.0" + "fabric-language-kotlin": ">=1.13.0+kotlin.2.1.0" } } ```