Compare commits

...
3 Commits
Author SHA1 Message Date
ian b9268dd4ca Update pyproject.toml 2026-08-25 20:42:07 +00:00
ian 0cce38b0ab Update core/constants.py 2026-08-25 20:41:53 +00:00
ian 5a77248dbc Fix a bug in calling the V1 add spot endpoint 2026-08-25 20:41:12 +00:00
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ from data.band import Band
from data.sig import SIG
# General software
SOFTWARE_VERSION = "2.0"
SOFTWARE_VERSION = "2.0.1-pre"
# HTTP headers used for spot providers that use HTTP
HTTP_HEADERS = {"User-Agent": f"Spothole v{SOFTWARE_VERSION} (operated by {SERVER_OWNER_CALLSIGN})"}
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "Spothole"
version = "2.0"
version = "2.0.1"
authors = [
{ name="Ian Renton", email="ian@ianrenton.com" },
]
-1
View File
@@ -160,7 +160,6 @@ class WebServer:
V1APISpotHandler,
{
"spots": self._data_store.spots,
"spot_providers": self._data_providers,
**handler_opts,
},
),