Skip to content

Commit

Permalink
feat: update to 1.21.1 while keeping backwards compat
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Aug 16, 2024
1 parent 5b2bb0e commit 16ae752
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ steps.get_release_type.outputs.result != 'test' }}
with:
branch: version/1.21
branch: version/1.21.1
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md
- name: Upload to Mod Platforms
Expand All @@ -97,7 +97,7 @@ jobs:
neoforge
game-versions: |
${{ steps.get_mc_version.outputs.result }}
1.21.1
1.21
changelog: |-
${{ steps.changelog.outputs.changes }}
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,14 @@ dependencies {
// runtimeOnly "mezz.jei:jei-${minecraft_version}-neoforge:${jei_version}"

//curios
compileOnly "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version}:api"
runtimeOnly "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version}"
compileOnly "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version_major}:api"
runtimeOnly "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version_major}"

//geckolib
implementation "software.bernie.geckolib:geckolib-neoforge-${geckolib_minecraft_version}:${geckolib_version}"
implementation "software.bernie.geckolib:geckolib-neoforge-${minecraft_version_major}:${geckolib_version}"

//smartbrainlib
implementation "net.tslat.smartbrainlib:SmartBrainLib-neoforge-${smartbrainlib_minecraft_version}:${smartbrainlib_version}"
implementation "net.tslat.smartbrainlib:SmartBrainLib-neoforge-${minecraft_version_major}:${smartbrainlib_version}"

//TODO: enable once available
//almostunified
Expand All @@ -169,8 +169,8 @@ dependencies {
implementation "com.klikli_dev:modonomicon-${minecraft_version}-neoforge:${modonomicon_version}"

//theurgy
compileOnly "com.klikli_dev:theurgy-${minecraft_version}-neoforge:${theurgy_version}"
runtimeOnly "com.klikli_dev:theurgy-${minecraft_version}-neoforge:${theurgy_version}"
compileOnly "com.klikli_dev:theurgy-${minecraft_version_major}-neoforge:${theurgy_version}"
runtimeOnly "com.klikli_dev:theurgy-${minecraft_version_major}-neoforge:${theurgy_version}"

// emi
compileOnly "dev.emi:emi-neoforge:${emi_version}:api"
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ 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_major=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)

## Neo
# The neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.0.146
neo_version=21.1.13
# The neo version range can use any version of neo as bounds or match the loader version range
neo_version_range=[21.0.110-beta,)
# The loader version range can only use the major version of Neo/FML as bounds
Expand All @@ -37,22 +38,21 @@ mod_authors=Kli Kli
mod_description=A magic mod inspired by the world of Jonathan Stroud's Bartimaeus. With the help of occult rituals players can summon entities from the "Other Side" to perform magic.

## Dependency Properties
jei_version=19.3.1.25
jei_version=19.8.5.118
jei_version_range=[19.3.1.0,)
curios_version=9.0.5
curios_version_range=[9.0.5,)
geckolib_minecraft_version=1.21
geckolib_version=4.5.7
geckolib_version=4.5.8
geckolib_version_range=[4.5.5,)
smartbrainlib_minecraft_version=1.21
smartbrainlib_version=1.14.5
smartbrainlib_version_range=[1.14.5,)
almost_unified_version=0.5.0
almost_unified_version_range=[0.5.0,)
modonomicon_version=1.95.1
modonomicon_version=1.99.0
modonomicon_version_range=[1.95.0,)
theurgy_version=1.26.0
theurgy_version_range=[1.26.0,)
per_viam_invenire_version_range=[0.1.57,)
emi_version=1.1.10+1.21
emi_version=1.1.12+1.21
emi_version_range=[1.1.7+1.21,)

0 comments on commit 16ae752

Please sign in to comment.