Skip to content

Commit da9e26d

Browse files
committed
changelog and version bump for 2.7.2
1 parent c8c801e commit da9e26d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,3 +486,12 @@ Blood, sweat, refactors, enhancements, tears, unit tests, bugfixes, blood, and m
486486
VINEFLOWERRRRRRRRRR
487487

488488
- downgrade vineflower to 1.11.1 to fix issues with decompilation ([#341](https://github.com/QuiltMC/enigma/pull/341))
489+
490+
# 2.7.2
491+
492+
version `2.7.2`, or "your beloved enigma team proves once again that they are professionals at introducing performance issues".
493+
494+
- fix memory overuse issues introduced with the library index changes ([#345](https://github.com/QuiltMC/enigma/pull/345))
495+
- indexes are now better combined internally to save memory
496+
- define the iteration order for `InheritanceIndex#getAncestors(ClassEntry)` as breadth-first ([#347](https://github.com/QuiltMC/enigma/pull/347))
497+
- add `InheritanceIndex#streamAncestors(ClassEntry)`

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ subprojects {
3333

3434
group = 'org.quiltmc'
3535
// When bumping version, remember to update the int constants in Enigma!
36-
version = '2.7.1'
36+
version = '2.7.2'
3737

3838
var ENV = System.getenv()
3939
version = version + (ENV.GITHUB_ACTIONS ? (ENV.SNAPSHOTS_URL ? "-SNAPSHOT" : "") : "+local")

enigma/src/main/java/org/quiltmc/enigma/api/Enigma.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class Enigma {
8282
* {@link EnigmaPlugin#supportsEnigmaVersion(Version)} implementations,
8383
* allowing plugins to 'remember' the version of Enigma they were built with.
8484
*/
85-
public static final int PATCH_VERSION = 1;
85+
public static final int PATCH_VERSION = 2;
8686

8787
private static final Version CURRENT_VERSION = new Version(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION);
8888

0 commit comments

Comments
 (0)