From 5e03a1bc3298160f1617819daea4d6e4ed18e03f Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Sun, 18 Aug 2024 14:06:51 -0700 Subject: [PATCH] release: Version 2.3.1 --- README.md | 8 ++++---- plugin/build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b7486eb..d340fd0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-paper") version "2.3.0" + id("xyz.jpenilla.run-paper") version "2.3.1" } tasks { @@ -25,7 +25,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.20.4") + minecraftVersion("1.21.1") } } ``` @@ -45,7 +45,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-velocity") version "2.3.0" + id("xyz.jpenilla.run-velocity") version "2.3.1" } tasks { @@ -73,7 +73,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-waterfall") version "2.3.0" + id("xyz.jpenilla.run-waterfall") version "2.3.1" } tasks { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 21e23b1..9574fb8 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -9,7 +9,7 @@ plugins { } group = "xyz.jpenilla" -version = "2.3.1-SNAPSHOT" +version = "2.3.1" description = "Gradle plugins adding run tasks for Minecraft server and proxy software" repositories {