chore: prepare v0.17.0-alpha release

This commit is contained in:
Alexander Sellite 2026-08-23 21:00:15 -04:00
parent 21d17c4211
commit b5edf22ad3
6 changed files with 15 additions and 15 deletions

View file

@ -16,8 +16,8 @@ VALID_ROOM = {
"port": 7777,
"current_players": 1,
"max_players": 8,
"game_version": "0.16.2-alpha",
"protocol_version": 9,
"game_version": "0.17.0-alpha",
"protocol_version": 10,
}
@ -112,7 +112,7 @@ class RoomRegistryTests(unittest.TestCase):
"203.0.113.11",
dict(VALID_ROOM, room_name="Older Room", protocol_version=3),
)
self.assertEqual(self.registry.list_rooms(protocol_version=9), [expected])
self.assertEqual(self.registry.list_rooms(protocol_version=10), [expected])
self.assertEqual(self.registry.list_rooms(game_version="missing"), [])
def test_room_limits_bound_untrusted_advertisements(self) -> None: