Version bump 0.2.7.2

This commit is contained in:
codemann8
2022-05-10 08:09:38 -05:00
parent 47d2aad9bb
commit 9aff3d0b90
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
### 0.2.7.2
- Special OW Area are now shuffled in Layout Shuffle (Zora/Hobo/Pedestal)
- Fixed some broken water region graph modelling, fixed some reachability logic
- Some minor code simplifications
### 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

View File

@@ -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.1'
version_number = '0.2.7.2'
version_branch = '-u'
__version__ = '%s%s' % (version_number, version_branch)