Skip to content
Open
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
4 changes: 2 additions & 2 deletions pyhilo/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

import aiohttp

# THe instance ID is random and unique to a specific instance/run.
# The instance ID is random and unique to a specific instance/run.
# Helps identifying multiple instances behind the same public IP, can be useful to the Hilo/HQ devs for debugging purposes
INSTANCE_ID: Final = str(uuid.uuid4())[24:]
LOG: Final = logging.getLogger(__package__)
DEFAULT_STATE_FILE: Final = "hilo_state.yaml"
REQUEST_RETRY: Final = 9
PYHILO_VERSION: Final = "2026.3.05"
PYHILO_VERSION: Final = "2026.9.01"
# TODO: Find a way to keep previous line in sync with pyproject.toml automatically

CONTENT_TYPE_FORM: Final = "application/x-www-form-urlencoded"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python-hilo"
version = "2026.3.5"
version = "2026.9.1"
description = "A Python3, async interface to the Hilo API"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
Loading