From 6210630ce214e0d0034814f2f11e8d6c2920ee71 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 30 Jan 2022 03:45:21 +0100 Subject: [PATCH] Core: increment version --- Utils.py | 2 +- test/general/TestIDs.py | 4 ++-- worlds/alttp/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Utils.py b/Utils.py index 58883da0..61b21926 100644 --- a/Utils.py +++ b/Utils.py @@ -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 diff --git a/test/general/TestIDs.py b/test/general/TestIDs.py index 05a90c0e..c69e6b10 100644 --- a/test/general/TestIDs.py +++ b/test/general/TestIDs.py @@ -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": diff --git a/worlds/alttp/__init__.py b/worlds/alttp/__init__.py index 9cb46ff9..342b0a9d 100644 --- a/worlds/alttp/__init__.py +++ b/worlds/alttp/__init__.py @@ -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])