Core: increment version

This commit is contained in:
Fabian Dill 2022-01-30 03:45:21 +01:00
parent e5af7d11cc
commit 6210630ce2
3 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ class Version(typing.NamedTuple):
build: int
__version__ = "0.2.3"
__version__ = "0.2.4"
version_tuple = tuplize_version(__version__)
from yaml import load, dump, SafeLoader

View File

@ -32,7 +32,7 @@ class TestIDs(unittest.TestCase):
self.assertLess(location_id, 2**53)
def testReservedItems(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative item IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":
@ -43,7 +43,7 @@ class TestIDs(unittest.TestCase):
self.assertGreater(item_id, 0)
def testReservedLocations(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative location IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":

View File

@ -324,7 +324,7 @@ class ALTTPWorld(World):
del (multidata["connect_names"][self.world.player_name[self.player]])
def get_required_client_version(self) -> tuple:
return max((0, 2, 0), super(ALTTPWorld, self).get_required_client_version())
return max((0, 2, 4), super(ALTTPWorld, self).get_required_client_version())
def create_item(self, name: str) -> Item:
return ALttPItem(name, self.player, **as_dict_item_table[name])