Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
[skip build]
  • Loading branch information
rlnt committed Oct 28, 2022
1 parent 7c376e5 commit e198bbf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -152,6 +166,7 @@ Initial beta release!
[semantic versioning]: https://semver.org/spec/v2.0.0.html

<!-- Versions -->
[0.2.1]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.18-0.2.1-beta
[0.2.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.18-0.2.0-beta
[0.1.2]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.18-0.1.2-beta
[0.1.1]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.18-0.1.1-beta
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mod Info
modId = almostunified
modName = AlmostUnified
modVersion = 0.2.0
modVersion = 0.2.1
modAuthor = AlmostReliable
modDescription = Unify all resources.

Expand All @@ -12,7 +12,7 @@ junitVersion = 5.9.0

# Runtime Settings
extraModsDirectory = extra-mods
forgeRecipeViewer = rei
forgeRecipeViewer = jei

# Common
minecraftVersion = 1.18.2
Expand Down

0 comments on commit e198bbf

Please sign in to comment.