diff --git a/CHANGELOG.md b/CHANGELOG.md index 78de0226..4acbd0e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### 0.2.7.1 +- Map checks in Mixed OWR now will show the proper tile images when screens are swapped (ie. Pyramid shows in the LW if that screen is swapped) +- Added mystery seed number to spoiler log, so it is easier to match a spoiler log to a rom filename +- Added proper branch-specific versioning (ie. Dev branch has '-u' suffixing the version number while Release/Main branch does not) + ### 0.2.7.0 - ~~Merged DR v1.0.0.3 - MANY changes, major things listed below~~ - New Item Fills (Districts/Vanilla/Major Location/Dungeon) diff --git a/OverworldShuffle.py b/OverworldShuffle.py index 265026be..bd855436 100644 --- a/OverworldShuffle.py +++ b/OverworldShuffle.py @@ -5,7 +5,7 @@ from BaseClasses import OWEdge, WorldType, RegionType, Direction, Terrain, PolSl from Regions import mark_dark_world_regions, mark_light_world_regions from OWEdges import OWTileRegions, OWTileGroups, OWEdgeGroups, OWExitTypes, OpenStd, parallel_links, IsParallel -version_number = '0.2.7.0' +version_number = '0.2.7.1' version_branch = '-u' __version__ = '%s%s' % (version_number, version_branch)