From 70dfab36570602c9a1ef7365410427bec2aa2f57 Mon Sep 17 00:00:00 2001 From: ix0rai Date: Thu, 7 Nov 2024 20:59:40 -0600 Subject: [PATCH] changelog and version bump for `2.5.2` --- CHANGELOG.md | 8 ++++++++ build.gradle | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d95294c..780bc706 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -306,3 +306,11 @@ But honey, I know you're just here to see if you can remove the ASM snapshot rep - updated dependencies - asm: `9.8-SNAPSHOT` -> `9.7.1` - you can now remove the ASM snapshot repo from your buildscript when depending on enigma through maven/gradle! + +# 2.5.2 + +In our bugfix era. + +- fixed stability issues introduced with the new validation on parameter indices +- added missing translations for library indexing +- fixed entry navigator pointing to negative entry indices after renaming items (thanks [pitheguy](https://github.com/PiTheGuy)!) diff --git a/build.gradle b/build.gradle index a1e715fd..eaa9a4d4 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ subprojects { } group = 'org.quiltmc' - version = '2.5.1' + version = '2.5.2' var ENV = System.getenv() version = version + (ENV.GITHUB_ACTIONS ? (ENV.SNAPSHOTS_URL ? "-SNAPSHOT" : "") : "+local")