Skip to content

Commit

Permalink
MixinBooter 8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Oct 31, 2023
1 parent b9095bc commit fa23c13
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [8.8] - 2023-10-31

### Changed
- Logging during mod gathering

### Fixed
- Optimized mod gathering
- Fixed delegated transformers not being rebuild before late mixins are loaded. Resulting in transformers that are registered later not properly running

## [8.7] - 2023-10-30

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ dependencies {
annotationProcessor 'com.google.code.gson:gson:2.8.9'
// ForgeGradle:
implementation ('zone.rong:mixinbooter:8.7') {
implementation ('zone.rong:mixinbooter:8.8') {
transitive = false
}
annotationProcessor ('zone.rong:mixinbooter:8.7') {
annotationProcessor ('zone.rong:mixinbooter:8.8') {
transitive = false
}
// RetroFuturaGradle:
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:8.7')
// modUtils.enableMixins('zone.rong:mixinbooter:8.7', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
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)
api (mixinBooter) {
transitive = false
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx3G
mod_version=8.7
mod_version=8.8
mod_name=MixinBooter
version_type=release

0 comments on commit fa23c13

Please sign in to comment.