From efff2c820a2c27862ec9861e5de7fbbf4b420c79 Mon Sep 17 00:00:00 2001 From: Ryder Belserion Date: Thu, 22 Aug 2024 21:02:41 -0400 Subject: [PATCH] [ci-skip] bump version --- CHANGELOG.md | 10 +++++++--- build.gradle.kts | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d81e7477..db745c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ ### Changes: -- Bumped to 1.21.1 -- Bumped nbt-api +- Bumped to 1.21.1. +- Bumped nbt-api. +- Cleaned up a bit of the internals. +- Optimized a few little bits of the plugin including some questionable ItemMeta calls. +- Removed reliance on nbt-api. ### Fixed: +- Fixed a few issues with broken bits of code that were commented. - Fixed issue with the location for boom not being correct. -- Fixed the lore in blacksmith for the cost +- Fixed the lore in blacksmith for the cost. ### Removed: - NoCheatPlus support as it's not hosted anywhere. \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index cd290ffa..15524105 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { val buildNumber: String? = System.getenv("BUILD_NUMBER") -rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.4.2" +rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.5" val isSnapshot = false