Skip to content

Commit

Permalink
Changelog updated
Browse files Browse the repository at this point in the history
Backed out the -SNAPSHOT filename change for snapshot builds
Fixed transitive dependency setup (no dependencies should be
  transitive now, good news for addon mods)
  • Loading branch information
desht committed Oct 25, 2024
1 parent 7d80f57 commit 9c4f04f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ Changes are in reverse chronological order; newest changes at the top.

## [8.2.1]

### Added
* Added `IGuiAnimatedStat#setOpeningPredicate` API method
* Allows extra control over when stat panels can expand
* Added `ICommonArmorHandler#addMessage` API method
* Like `IClientArmorRegistry#addHUDMessage` but can be called on both client and server

### Fixed
* Fixed some log spam for `SemiblockTracker: not overwriting existing semiblock` messages
* Note: excessive logging is fixed but root cause has not been determined (I've never been able to reproduce the problem)
* Messages are now only logged once per blockpos per server run
* Fixed some armor GUI settings not saving when adjusted, e.g. upgrade active/inactive status reporting on armor startup
* Fixed API and source jars not getting deployed to Maven
* Fixed transitive dependencies getting included in published artifacts

## [8.2.0]

Expand Down
17 changes: 10 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,19 @@ neoForge {
}

configurations {
compileClasspath.extendsFrom localImplementation
runtimeClasspath.extendsFrom localImplementation
runtimeClasspath.extendsFrom localRuntime
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0-M2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0-M2'

implementation("mcjty.theoneprobe:theoneprobe:${top_version}") {
exclude group: "net.minecraftforge", module: "forge"
}
localImplementation("mcjty.theoneprobe:theoneprobe:${top_version}")
// {
// exclude group: "net.minecraftforge", module: "forge"
// }

compileOnly("mezz.jei:jei-1.21.1-common-api:${jei_version}")
compileOnly("mezz.jei:jei-1.21.1-neoforge-api:${jei_version}")
Expand All @@ -175,19 +178,19 @@ dependencies {
compileOnly("vazkii.patchouli:Patchouli:${patchouli_version}:api")
localRuntime("vazkii.patchouli:Patchouli:${patchouli_version}")

implementation("curse.maven:cc-tweaked-282001:${cc_tweaked_curse_id}")
localImplementation("curse.maven:cc-tweaked-282001:${cc_tweaked_curse_id}")

compileOnly("dev.ftb.mods:ftb-filter-system-neoforge:${ffs_version}") { transitive = false }
compileOnly("dev.ftb.mods:ftb-teams-neoforge:${ftb_teams_version}") { transitive = false }

implementation("blusunrize.immersiveengineering:ImmersiveEngineering:${immersive_engineering_version}")
localImplementation("blusunrize.immersiveengineering:ImmersiveEngineering:${immersive_engineering_version}")

compileOnly("mekanism:Mekanism:${mekanism_version}:api")
localRuntime("mekanism:Mekanism:${mekanism_version}")

compileOnly("com.simibubi.create:create-1.20.1:${create_version}:slim") { transitive = false }

implementation("curse.maven:jade-324717:${jade_curse_id}")
localImplementation("curse.maven:jade-324717:${jade_curse_id}")

compileOnly("com.blamejared.crafttweaker:CraftTweaker-neoforge-1.21.1:${crafttweaker_version}")

Expand Down Expand Up @@ -260,7 +263,7 @@ publishing {
register('mavenJava', MavenPublication) {
artifactId = archive_base_name
groupId = mod_group_id
version = "${mod_version}${snapExt}+mc${minecraft_version}"
version = "${mod_version}+mc${minecraft_version}${snapExt}"
from components.java
artifact sourcesJar
artifact apiJar
Expand Down

0 comments on commit 9c4f04f

Please sign in to comment.