Skip to content

Commit

Permalink
Bump to 10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Jan 24, 2025
1 parent 95d81f9 commit b2d5c3b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [10.4] - 2025-01-24

### Changed
- Made reading mod metadata quicker and simpler
- Updated MixinExtras to 0.5.0-beta.5

### Fixed
- SpongeForge compatibility, due to a Forge oversight

## [10.3] - 2025-01-14

### Added
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

- Current Mixin Version: [UniMix 0.15.3 forked by CleanroomMC, derived from 0.8.7 branch by LegacyModdingMC](https://github.com/CleanroomMC/UniMix)

- Current MixinExtra Version: [0.5.0-beta4](https://github.com/LlamaLad7/MixinExtras)
- Current MixinExtra Version: [0.5.0-beta5](https://github.com/LlamaLad7/MixinExtras)

### For Developers:

Expand All @@ -24,16 +24,16 @@ dependencies {
annotationProcessor 'com.google.code.gson:gson:2.8.9'
// ForgeGradle:
implementation ('zone.rong:mixinbooter:10.3') {
implementation ('zone.rong:mixinbooter:10.4') {
transitive = false
}
annotationProcessor ('zone.rong:mixinbooter:10.3') {
annotationProcessor ('zone.rong:mixinbooter:10.4') {
transitive = false
}
// RetroFuturaGradle:
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.3')
// modUtils.enableMixins('zone.rong:mixinbooter:10.3', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.4')
// modUtils.enableMixins('zone.rong:mixinbooter:10.4', '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=10.3
mod_version=10.4
mod_name=MixinBooter
version_type=release

0 comments on commit b2d5c3b

Please sign in to comment.