mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-23 16:18:24 -05:00
bump version
[skip build]
This commit is contained in:
parent
ebc8b942dc
commit
b1c86ac20c
3 changed files with 18 additions and 4 deletions
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
||||
|
|
15
CHANGELOG.md
15
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
|
||||
|
||||
<!-- Versions -->
|
||||
[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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Mod Info
|
||||
modId = almostunified
|
||||
modName = AlmostUnified
|
||||
modVersion = 0.2.0
|
||||
modVersion = 0.2.1
|
||||
modAuthor = AlmostReliable
|
||||
modDescription = Unify all resources.
|
||||
|
||||
|
|
Loading…
Reference in a new issue