diff --git a/pyproject.toml b/pyproject.toml index c5ad7f4..d8a42a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sondehub" -version = "0.3.1" +version = "0.3.2" description = "SDK to access SondeHub open data, and helpers for uploading telemetry." authors = ["Michaela "] readme = "README.md" diff --git a/sondehub/__init__.py b/sondehub/__init__.py index 8f2482e..3e18aae 100644 --- a/sondehub/__init__.py +++ b/sondehub/__init__.py @@ -12,7 +12,7 @@ import queue import gzip -__version__ = "0.3.1" +__version__ = "0.3.2" S3_BUCKET = "sondehub-history" diff --git a/sondehub/amateur.py b/sondehub/amateur.py index be16eb0..dd43405 100644 --- a/sondehub/amateur.py +++ b/sondehub/amateur.py @@ -326,6 +326,10 @@ class Uploader(object): if _field not in output: output[_field] = extra_fields[_field] + # Add software details + output["software_name"] = self.software_name + output["software_version"] = self.software_version + logging.debug(f"Sondehub Amateur Uploader - Generated Packet: {str(output)}")