Skip to content

Commit 7bee6e4

Browse files
committed
Fix Toml being shadowed to the wrong package in Fabric
1 parent 3ace8cd commit 7bee6e4

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.0.0.6
2+
- Fix Jankson being shadowed to the wrong package in Fabric
3+
14
# 5.0.0.5
25
- Move Night Config Shutdown to Fabric Server Lifecycle Event
36
- Change maven coordinates to `dev.corgitaco.corgilib` from `corgitaco.corgilib`.

Fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ tasks {
5757
exclude("architectury.common.json")
5858
configurations = listOf(project.configurations.getByName("shadowBundle"))
5959
archiveClassifier.set("dev-shadow")
60-
relocate("blue.endless.jankson", "${project.group}.shadow.blue.endless.jankson")
60+
relocate("blue.endless.jankson", "corgitaco.corgilib.shadow.blue.endless.jankson")
6161
}
6262

6363
remapJar {

Fabric/src/main/resources/fabric.mod.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
],
1111
"contact": {
1212
"homepage": "https://github.com/CorgiTaco/CorgiLib",
13-
"sources": "https://github.com/CorgiTaco/CorgiLib"
13+
"sources": "https://github.com/CorgiTaco/CorgiLib",
14+
"issues": "https://github.com/CorgiTaco/CorgiLib/issues"
1415
},
1516
"license": "LGPLv3",
1617
"icon": "assets/corgilib/corgilib.png",

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Project
2-
version=5.0.0.5
2+
version=5.0.0.6-SNAPSHOT
33
group=dev.corgitaco.corgilib
44
archives_base_name=Corgilib
55

0 commit comments

Comments
 (0)