diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ca8656..27c06db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,9 +33,8 @@ jobs: - name: Validate Modrinth Token run: | - curl -s -H "Authorization: ${{ secrets.MODRINTH_TOKEN }}" https://api.modrinth.com/v2/user | grep -q "unauthorized" - if [ $? -eq 0 ]; then - echo "MODRINTH_TOKEN is not valid" + if [ -n "$(curl -s -H "Authorization: ${{ secrets.MODRINTH_TOKEN }}" https://api.modrinth.com/v2/user | grep "unauthorized")" ]; then + echo "Modrinth Token is invalid!" exit 1 fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a38ae8..c4dc024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [0.2.1] - 2022-10-28 + +### Added +- config backup system + - when your config has invalid entries, it will be backed up and a new config will be generated + - the new config will try to apply as many of the old settings as possible + - new backups will overwrite old backups +- proper ingredient hiding for REI + - hidden ingredients will no longer show up in recipes + - this bumps the minimum REI version to 8.3.557 + +### Changed +- tag priority overrides now use `ResourceLocation`s internally to automatically validate config entries + ## [0.2.0] - 2022-10-19 ### Added @@ -150,6 +164,7 @@ Initial 1.19 release! [semantic versioning]: https://semver.org/spec/v2.0.0.html +[0.2.1]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.19-0.2.1-beta [0.2.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.19-0.2.0-beta [0.1.2]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.19-0.1.2-beta [0.1.1]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.19-0.1.1-beta diff --git a/gradle.properties b/gradle.properties index af617c1..ec020cf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # Mod Info modId = almostunified modName = AlmostUnified -modVersion = 0.2.0 +modVersion = 0.2.1 modAuthor = AlmostReliable modDescription = Unify all resources.