Skip to content

Commit

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

## [10.3] - 2025-01-14

### Added
- Context to `IMixinConfigHijacker`

### Changed
- Allowed all mixin configs to be hijacked

### Fixed
- Use `JsonReader#setLenient` over `GsonBuilder#setLenient` for older Gson versions supplied by older Minecraft versions
- Use deprecated `Handle` constructor for older ASM versions supplied by older Minecraft versions
- Catch loader issues instead of exiting and not loading subsequent loaders

## [10.2] - 2024-11-16

### 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:10.2') {
implementation ('zone.rong:mixinbooter:10.3') {
transitive = false
}
annotationProcessor ('zone.rong:mixinbooter:10.2') {
annotationProcessor ('zone.rong:mixinbooter:10.3') {
transitive = false
}
// RetroFuturaGradle:
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)
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)
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.2
mod_version=10.3
mod_name=MixinBooter
version_type=release

0 comments on commit 37e6648

Please sign in to comment.