Skip to content

Commit

Permalink
Update to Forge 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MattCzyr committed Sep 5, 2024
1 parent d5022f1 commit 317f7d4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
## Version 3.0.3
#### NeoForge 1.21
#### NeoForge 1.21.1, 1.21
- Updated to NeoForge 1.21.1
- Fixed uncraftable Nature's Compass recipe

## Version 2.2.6
#### Fabric 1.21
#### Fabric 1.21.1, 1.21
- Updated to Fabric 1.21.1
- Fixed uncraftable Nature's Compass recipe

## Version 1.11.7
#### Forge 1.21
#### Forge 1.21.1, 1.21
- Updated to Forge 1.21.1
- Fixed uncraftable Nature's Compass recipe

## Version 3.0.2
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ org.gradle.daemon=false
## Environment Properties

# The Minecraft version must agree with the Forge version to get a valid artifact
minecraft_version=1.21
minecraft_version=1.21.1
# The Minecraft version range can use any release version of Minecraft as bounds.
# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.21,1.22)
minecraft_version_range=[1.21.1,1.22)
# The Forge version must agree with the Minecraft version to get a valid artifact
forge_version=51.0.16
forge_version=52.0.4
# The Forge version range can use any version of Forge as bounds or match the loader version range
forge_version_range=[0,)
# The loader version range can only use the major version of Forge/FML as bounds
Expand All @@ -35,7 +35,7 @@ loader_version_range=[0,)
mapping_channel=official
# The mapping version to query from the mapping channel.
# This must match the format required by the mapping channel.
mapping_version=1.21
mapping_version=1.21.1


## Mod Properties
Expand All @@ -48,7 +48,7 @@ mod_name=Nature's Compass
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=CC BY-NC-SA 4.0
# The mod version. See https://semver.org/
mod_version=1.21-1.11.7-forge
mod_version=1.21.1-1.11.7-forge
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
modLoader="javafml"
loaderVersion="[51,)"
loaderVersion="[52,)"
issueTrackerURL="https://github.com/MattCzyr/NaturesCompass/issues"
license="CC BY-NC-SA 4.0"

[[mods]]
modId="naturescompass"
version="1.21-1.11.7-forge"
version="1.21.1-1.11.7-forge"
displayName="Nature's Compass"
displayURL="https://github.com/MattCzyr/NaturesCompass"
authors="ChaosTheDude"
Expand All @@ -16,12 +16,12 @@ license="CC BY-NC-SA 4.0"
[[dependencies.naturescompass]]
modId="forge"
mandatory=true
versionRange="[51,)"
versionRange="[52,)"
ordering="NONE"
side="BOTH"
[[dependencies.naturescompass]]
modId="minecraft"
mandatory=true
versionRange="[1.21,)"
versionRange="[1.21.1,)"
ordering="NONE"
side="BOTH"

0 comments on commit 317f7d4

Please sign in to comment.