Skip to content

Commit 37e6648

Browse files
committed
Bump to 10.3
1 parent 6af9ab8 commit 37e6648

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [10.3] - 2025-01-14
4+
5+
### Added
6+
- Context to `IMixinConfigHijacker`
7+
8+
### Changed
9+
- Allowed all mixin configs to be hijacked
10+
11+
### Fixed
12+
- Use `JsonReader#setLenient` over `GsonBuilder#setLenient` for older Gson versions supplied by older Minecraft versions
13+
- Use deprecated `Handle` constructor for older ASM versions supplied by older Minecraft versions
14+
- Catch loader issues instead of exiting and not loading subsequent loaders
15+
316
## [10.2] - 2024-11-16
417

518
### Fixed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ dependencies {
2424
annotationProcessor 'com.google.code.gson:gson:2.8.9'
2525
2626
// ForgeGradle:
27-
implementation ('zone.rong:mixinbooter:10.2') {
27+
implementation ('zone.rong:mixinbooter:10.3') {
2828
transitive = false
2929
}
30-
annotationProcessor ('zone.rong:mixinbooter:10.2') {
30+
annotationProcessor ('zone.rong:mixinbooter:10.3') {
3131
transitive = false
3232
}
3333
3434
// RetroFuturaGradle:
35-
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.2')
36-
// modUtils.enableMixins('zone.rong:mixinbooter:10.2', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
35+
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.3')
36+
// modUtils.enableMixins('zone.rong:mixinbooter:10.3', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
3737
api (mixinBooter) {
3838
transitive = false
3939
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.jvmargs=-Xmx3G
2-
mod_version=10.2
2+
mod_version=10.3
33
mod_name=MixinBooter
44
version_type=release

0 commit comments

Comments
 (0)