Skip to content

Commit

Permalink
Bump to 9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Feb 3, 2024
1 parent 0c318ee commit c6ab15b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [9.1] - 2024-02-03

### Changed
- Removed fastutil usages, to keep compatibility with Minecraft versions that used different fastutil versions

## [9.0] - 2024-01-30

### Added
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:9.0') {
implementation ('zone.rong:mixinbooter:9.1') {
transitive = false
}
annotationProcessor ('zone.rong:mixinbooter:9.0') {
annotationProcessor ('zone.rong:mixinbooter:9.1') {
transitive = false
}
// RetroFuturaGradle:
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:9.0')
// modUtils.enableMixins('zone.rong:mixinbooter:9.0', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:9.1')
// modUtils.enableMixins('zone.rong:mixinbooter:9.1', '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=9.0
mod_version=9.1
mod_name=MixinBooter
version_type=beta

0 comments on commit c6ab15b

Please sign in to comment.