Skip to content

Commit

Permalink
Fixed support for 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal-Spider committed Sep 30, 2024
1 parent 107e9a9 commit c2ebffd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Crystal Nest Semantic Versioning](https://crystalne

- Nothing new.

## [v5.0.4] - 2024/09/30

- For 1.21 and above.
- Fixed support for 1.21.1.

## [v5.0.3] - 2024/09/22

- For 1.21 and above.
Expand Down Expand Up @@ -445,6 +450,7 @@ and this project adheres to [Crystal Nest Semantic Versioning](https://crystalne

[Unreleased]: https://github.com/crystal-nest/soul-fire-d

[v5.0.4]: https://github.com/crystal-nest/soul-fire-d/releases?q=5.0.4
[v5.0.3]: https://github.com/crystal-nest/soul-fire-d/releases?q=5.0.3
[v5.0.2]: https://github.com/crystal-nest/soul-fire-d/releases?q=5.0.2
[v5.0.1]: https://github.com/crystal-nest/soul-fire-d/releases?q=5.0.1
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/groovy/multiloader-common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ processResources {
"github_user" : github_user,
"curseforge_id" : curseforge_id,
"minecraft_version" : minecraft_version,
"minecraft_version_range" : minecraft_version_range,
"fabric_version" : fabric_version,
"fabric_loader_version" : fabric_loader_version,
"neoforge_version" : neoforge_version,
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 @@ -31,7 +31,7 @@
"depends": {
"fabricloader": ">=${fabric_loader_version}",
"fabric-api": "*",
"minecraft": "${minecraft_version}",
"minecraft": "~${minecraft_version}",
"java": ">=${java_version}",
"cobweb": "^${cobweb_version}"
}
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ credits =
github_user = crystal-nest
curseforge_id = 662413
minecraft_version = 1.21
minecraft_version_range = [1.21,)
# https://parchmentmc.org/docs/getting-started#choose-a-version
parchment_version = 2024.06.23
# https://projects.neoforged.net/neoforged/neoform
Expand Down
2 changes: 1 addition & 1 deletion neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ issueTrackerURL="https://github.com/${github_user}/${mod_id_kebab}/issues" #opti
[[dependencies.${mod_id}]]
modId = "minecraft"
type = "required"
versionRange = "${minecraft_version_range}"
versionRange = "[${minecraft_version},)"
ordering = "NONE"
side = "BOTH"
[[dependencies.${mod_id}]]
Expand Down

0 comments on commit c2ebffd

Please sign in to comment.