Version bump 0.2.7.1

This commit is contained in:
codemann8
2022-05-02 05:55:56 -05:00
parent cd92524193
commit b30a5b2652
2 changed files with 6 additions and 1 deletions

View File

@@ -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)

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