Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Oct 21, 2024
1 parent 0feac23 commit 5917bf5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
### Changes:
- 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.
- Updated to 1.21.1 (ryderbelserion)
- Updated how glow is added to an item. (ryderbelserion)
- Remove unnecessary logging. (TDL)
- Stopped updating plugin hooks twice on `/ce reload` (ryderbelserion)

### Additions:
- Added a new config option, `Settings.EnchantmentOptions.Limit.Change-On-Fail` (TDL)
- If true, the enchant limit will change.
- Added untested support for the Lands plugin. (TDL)

### Fixed:
- Fixed a few issues with broken bits of code that were commented.
- Fixed an issue with enchantments not working with multi arrow. (TDL)
- Fixed an issue with checking if an enchant is activated. (TDL)
- Fixed an issue with blacksmith max enchants (TDL)
- Fixed an issue with ore drops. (TDL)
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

val buildNumber: String? = System.getenv("BUILD_NUMBER")

rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.5"
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.5.1"

val isSnapshot = false

Expand Down

0 comments on commit 5917bf5

Please sign in to comment.