Skip to content

Commit

Permalink
Release 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiMC committed Dec 7, 2023
1 parent 6ed9216 commit 97f3569
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* Added NeoForge support (1.20.2 and above)
* Added 1.20.3 and 1.20.4 support
* Reduced memory allocations by avoiding the java Stream API
* Moved away from a single jar for all loaders since NeoForge uses the exact same metadata files as Forge
* Updated dependencies
* Don't include MixinExtras in the jar for loaders which have it built-in
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ subprojects {
curseforge {
accessToken = providers.gradleProperty("curseforge.publishing_token")
projectId = "686911"
minecraftVersions.addAll(rootProject.supported_minecraft_versions)
minecraftVersions.addAll(rootProject.supported_minecraft_versions.split(','))
}
modrinth {
accessToken = providers.gradleProperty("modrinth.publishing_token")
projectId = "5ZwdcRci"
minecraftVersions.addAll(rootProject.supported_minecraft_versions)
minecraftVersions.addAll(rootProject.supported_minecraft_versions.split(','))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx4G

minecraft_version=1.20.3
supported_minecraft_versions = ["1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4"]
supported_minecraft_versions = 1.20,1.20.1,1.20.2,1.20.3,1.20.4
yarn_mappings=1.20.3+build.1
fabric_loader_version=0.15.0
forge_version=1.20.3-49.0.2
Expand All @@ -14,4 +14,4 @@ reflect_version=1.3.1

maven_group = net.raphimc
maven_name = ImmediatelyFast
maven_version = 1.2.8-SNAPSHOT+1.20.4
maven_version = 1.2.8+1.20.4

0 comments on commit 97f3569

Please sign in to comment.