From ec73ee64e55f036f816d8d658f4baafc0460da8a Mon Sep 17 00:00:00 2001 From: HydrolienF Date: Tue, 13 Aug 2024 21:26:16 +0200 Subject: [PATCH] 1.21.1 --- .gitignore | 2 ++ README.md | 2 +- build.gradle.kts | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1b6985c..94e9579 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ # Ignore Gradle build output directory build + +run/ \ No newline at end of file diff --git a/README.md b/README.md index 7518114..089a82b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ # VoidWorldGenerator A simple minecraft plugin to generate a void world. -Compatible with `Paper`, `Spigot` & `Folia` in `1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21`. +Compatible with `Paper`, `Spigot` & `Folia` in `1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1`. 1.1.2 is the last Java 17 compatible version. Update to [Java 21](https://adoptium.net/temurin/releases/?version=21) or use [1.1.2](https://github.com/HydrolienF/VoidWorldGenerator/releases/tag/1.1.2). It can be used to prevent world generation outside of the world border. diff --git a/build.gradle.kts b/build.gradle.kts index 95a46c1..17c3faf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group="fr.formiko.voidworldgenerator" -version="1.1.3" +version="1.1.4" description="Generate empty world." repositories { @@ -17,7 +17,7 @@ repositories { } dependencies { - compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT") + compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT") implementation("org.bstats:bstats-bukkit:3.0.2") } @@ -50,7 +50,7 @@ tasks { // Configure the Minecraft version for our task. // This is the only required configuration besides applying the plugin. // Your plugin's jar (or shadowJar if present) will be used automatically. - minecraftVersion("1.21") + minecraftVersion("1.21.1") } }