forked from AmazingAmpharos/OoT-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
__version__ = '6.9.17' | ||
__version__ = '7.0.0' | ||
|
||
# This is a supplementary version number for branches based off of main dev. | ||
supplementary_version = 1 | ||
supplementary_version = 0 | ||
|
||
# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch. | ||
# This will be 0x00 for main releases and 0x01 for main dev. | ||
branch_identifier = 0x00 | ||
|
||
# URL to your branch on GitHub. | ||
branch_url = 'https://github.com/TestRunnerSRL/OoT-Randomizer/tree/rc' | ||
branch_url = 'https://github.com/TestRunnerSRL/OoT-Randomizer/tree/release' | ||
|
||
# This is named __version__ at the top for compatability with older versions trying to version check. | ||
base_version = __version__ | ||
|
||
# And finally, the completed version string. This is what is displayed and used for salting seeds. | ||
__version__ = f'7.0.0 Release Candidate {supplementary_version}' | ||
__version__ = f'{base_version} Release' |