cloudnet-api-client 0.9.1__tar.gz → 0.9.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 0.9.2 – 2025-08-04
9
+
10
+ - Use updated Cloudnet API
11
+
8
12
  ## 0.9.1 – 2025-06-19
9
13
 
10
14
  - Support mobile sites without latitude and longitude
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudnet-api-client
3
- Version: 0.9.1
3
+ Version: 0.9.2
4
4
  Summary: Cloudnet API client
5
5
  Author-email: Simo Tukiainen <simo.tukiainen@fmi.fi>
6
6
  License-File: LICENSE
@@ -432,7 +432,7 @@ def _build_raw_meta_objects(res: list[dict]) -> list[RawMetadata]:
432
432
  return [
433
433
  RawMetadata(
434
434
  **{_to_snake(k): v for k, v in obj.items() if _to_snake(k) in field_names},
435
- instrument=_create_instrument_object(obj["instrumentInfo"]),
435
+ instrument=_create_instrument_object(obj["instrument"]),
436
436
  measurement_date=datetime.date.fromisoformat(obj["measurementDate"]),
437
437
  created_at=_parse_datetime(obj["createdAt"]),
438
438
  updated_at=_parse_datetime(obj["updatedAt"]),
@@ -0,0 +1 @@
1
+ __version__ = "0.9.2"
@@ -1 +0,0 @@
1
- __version__ = "0.9.1"