Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
VERSION = "0.31.1"
VERSION = "0.31.2"


setup(
Expand Down
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def version_data_fixture():
"serverVersion": "test_server_version",
"homeId": "test_home_id",
"minSchemaVersion": 0,
"maxSchemaVersion": 9,
"maxSchemaVersion": 10,
}


Expand Down
2 changes: 1 addition & 1 deletion test/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_dump_state(
assert captured.out == (
"{'type': 'version', 'driverVersion': 'test_driver_version', "
"'serverVersion': 'test_server_version', 'homeId': 'test_home_id', "
"'minSchemaVersion': 0, 'maxSchemaVersion': 9}\n"
"'minSchemaVersion': 0, 'maxSchemaVersion': 10}\n"
"{'type': 'result', 'success': True, 'result': {}, 'messageId': 'api-schema-id'}\n"
"test_result\n"
)
Expand Down
4 changes: 2 additions & 2 deletions zwave_js_server/const/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from enum import Enum, IntEnum

# minimal server schema version we can handle
MIN_SERVER_SCHEMA_VERSION = 9
MIN_SERVER_SCHEMA_VERSION = 10
# max server schema version we can handle (and our code is compatible with)
MAX_SERVER_SCHEMA_VERSION = 9
MAX_SERVER_SCHEMA_VERSION = 10

VALUE_UNKNOWN = "unknown"

Expand Down