Skip to content

Commit

Permalink
fix: more permissive mc versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox authored Aug 25, 2024
1 parent bc26237 commit 0dd7170
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,14 @@ publishMods {
accessToken = providers.environmentVariable("CURSE_TOKEN")
projectId = "${curseforge_id}"
minecraftVersions.add("${minecraft_version}")
minecraftVersions.add("1.21.1")
}

def modrinthOptions = modrinthOptions {
accessToken = providers.environmentVariable("MODRINTH_TOKEN")
projectId = "${modrinth_id}"
minecraftVersions.add("${minecraft_version}")
minecraftVersions.add("1.21.1")
}

curseforge("curseforgeFabric") {
Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"depends": {
"fabricloader": ">=0.15",
"fabric": "*",
"minecraft": "1.21",
"minecraft": ">=1.21",
"java": ">=21"
},
"suggests": {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
mod_version=21.0.1
mod_version=21.0.2
group=dev.wuffs.bcc

# Common
Expand Down

0 comments on commit 0dd7170

Please sign in to comment.