diff --git a/CHANGELOG.md b/CHANGELOG.md index f434018..4722c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [8.9] - 2023-11-02 + +### Changed +- Updated MixinExtras from 0.2.0-beta.9 to 0.2.1-beta.2, now supports wrapping of object instantiations with `@WrapOperation` + ## [8.8] - 2023-10-31 ### Changed diff --git a/README.md b/README.md index c180022..9be1c1d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ - Current Mixin Version: [UniMix 0.12.2 forked by CleanroomMC, derived from 0.8.5 branch by LegacyModdingMC](https://github.com/CleanroomMC/UniMix) -- Current MixinExtra Version: [0.2.0-beta.9](https://github.com/LlamaLad7/MixinExtras) +- Current MixinExtra Version: [0.2.1-beta.2](https://github.com/LlamaLad7/MixinExtras) ### For Developers: @@ -24,16 +24,16 @@ dependencies { annotationProcessor 'com.google.code.gson:gson:2.8.9' // ForgeGradle: - implementation ('zone.rong:mixinbooter:8.8') { + implementation ('zone.rong:mixinbooter:8.9') { transitive = false } - annotationProcessor ('zone.rong:mixinbooter:8.8') { + annotationProcessor ('zone.rong:mixinbooter:8.9') { transitive = false } // RetroFuturaGradle: - String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:8.8') - // modUtils.enableMixins('zone.rong:mixinbooter:8.8', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional) + String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:8.9') + // modUtils.enableMixins('zone.rong:mixinbooter:8.9', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional) api (mixinBooter) { transitive = false } diff --git a/gradle.properties b/gradle.properties index 5201c70..d356dc1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.jvmargs=-Xmx3G -mod_version=8.8 +mod_version=8.9 mod_name=MixinBooter -version_type=release \ No newline at end of file +version_type=beta \ No newline at end of file