diff --git a/Dolphin scripts/Entrance Randomizer/CHANGELOG.md b/Dolphin scripts/Entrance Randomizer/CHANGELOG.md index c7a7169..43185c3 100644 --- a/Dolphin scripts/Entrance Randomizer/CHANGELOG.md +++ b/Dolphin scripts/Entrance Randomizer/CHANGELOG.md @@ -19,6 +19,27 @@ To add a changelog entry, add a new file `..md` to the `new +## 0.5.0 - 2024-07-16 + +### Features + +- When being sent to an Animal Temple that you haven't beaten yet, you will now instead be redirected to the Spirit Fight immediately -- by @wossnameGitHub ([#87](https://github.com/Avasam/ptle-tools/issues/87)) +- "Immediate spirit fights" is optional and configurable -- by @Avasam ([#65](https://github.com/Avasam/ptle-tools/issues/65)) + +### Bugfixes + +- Fix Eyes of Doom anti-softlock not working from Mountain Overlook entrance -- by @Avasam ([#75](https://github.com/Avasam/ptle-tools/issues/75)) +- Add back Crash Site to disabled transitions (prevent progress reset) -- by @Avasam ([#77](https://github.com/Avasam/ptle-tools/issues/77)) + +### Improved Documentation + +- Development versions are now automatically packed and uploaded as artefacts. Link added to readme. -- by @Avasam ([#69](https://github.com/Avasam/ptle-tools/issues/69)) +- Initialized the changelog using Towncrier & automatically pack release versions -- by @Avasam ([#70](https://github.com/Avasam/ptle-tools/issues/70)) + +### Deprecations and Removals + +- Update expected Python version for the randomizer to `3.11`. This means the Dolphin version has to be at least ([#67](https://github.com/Avasam/ptle-tools/issues/67)) + ## 0.4.0 - 2024-07-13 ### Features diff --git a/Dolphin scripts/Entrance Randomizer/lib/constants.py b/Dolphin scripts/Entrance Randomizer/lib/constants.py index 28e7d21..f5cc7a5 100644 --- a/Dolphin scripts/Entrance Randomizer/lib/constants.py +++ b/Dolphin scripts/Entrance Randomizer/lib/constants.py @@ -10,7 +10,7 @@ from dolphin import memory # pyright: ignore[reportMissingModuleSource] from lib.transition_infos import Transition, transition_infos -__version = "0.4.0" +__version = "0.5.0" """See CHANGELOG.md for version semantics.""" __dev_version = "local" __version__ = f"{__version}-{__dev_version}" diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/65.feature.md b/Dolphin scripts/Entrance Randomizer/newsfragments/65.feature.md deleted file mode 100644 index 1d197ae..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/65.feature.md +++ /dev/null @@ -1 +0,0 @@ -"Immediate spirit fights" is optional and configurable -- by @Avasam diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/67.removal.md b/Dolphin scripts/Entrance Randomizer/newsfragments/67.removal.md deleted file mode 100644 index 87bbc8b..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/67.removal.md +++ /dev/null @@ -1 +0,0 @@ -Update expected Python version for the randomizer to `3.11`. This means the Dolphin version has to be at least diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/69.doc.md b/Dolphin scripts/Entrance Randomizer/newsfragments/69.doc.md deleted file mode 100644 index c756066..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/69.doc.md +++ /dev/null @@ -1 +0,0 @@ -Development versions are now automatically packed and uploaded as artefacts. Link added to readme. -- by @Avasam diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/70.doc.md b/Dolphin scripts/Entrance Randomizer/newsfragments/70.doc.md deleted file mode 100644 index 077dc1a..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/70.doc.md +++ /dev/null @@ -1 +0,0 @@ -Initialized the changelog using Towncrier & automatically pack release versions -- by @Avasam diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md b/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md deleted file mode 100644 index 8c1e54e..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix Eyes of Doom anti-softlock not working from Mountain Overlook entrance -- by @Avasam diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/77.bugfix.md b/Dolphin scripts/Entrance Randomizer/newsfragments/77.bugfix.md deleted file mode 100644 index dc6cbd4..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/77.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Add back Crash Site to disabled transitions (prevent progress reset) -- by @Avasam diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/87.feature.md b/Dolphin scripts/Entrance Randomizer/newsfragments/87.feature.md deleted file mode 100644 index 8b2e89a..0000000 --- a/Dolphin scripts/Entrance Randomizer/newsfragments/87.feature.md +++ /dev/null @@ -1 +0,0 @@ -When being sent to an Animal Temple that you haven't beaten yet, you will now instead be redirected to the Spirit Fight immediately -- by @wossnameGitHub