diff --git a/CHANGELOG.md b/CHANGELOG.md index d07058f..7441b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [10.2] - 2024-11-16 + +### Fixed +- Specified ordinality on a local capture for when the mixin is applied in brittle contexts + ## [10.1] - 2024-11-04 ### Fixed diff --git a/README.md b/README.md index 82e39dc..7651108 100644 --- a/README.md +++ b/README.md @@ -24,16 +24,16 @@ dependencies { annotationProcessor 'com.google.code.gson:gson:2.8.9' // ForgeGradle: - implementation ('zone.rong:mixinbooter:10.1') { + implementation ('zone.rong:mixinbooter:10.2') { transitive = false } - annotationProcessor ('zone.rong:mixinbooter:10.1') { + annotationProcessor ('zone.rong:mixinbooter:10.2') { transitive = false } // RetroFuturaGradle: - String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.1') - // modUtils.enableMixins('zone.rong:mixinbooter:10.1', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional) + String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.2') + // modUtils.enableMixins('zone.rong:mixinbooter:10.2', '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 46a060c..d842ab5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.jvmargs=-Xmx3G -mod_version=10.1 +mod_version=10.2 mod_name=MixinBooter -version_type=beta \ No newline at end of file +version_type=release \ No newline at end of file