File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -19,5 +19,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919- Basic test suite (pytest)
2020- CI/CD GitHub Actions (tests + lint + build + publish via Trusted Publishing)
2121
22- [ 0.1.0 ] : https://github.com/SculptTechProject/dummysensors/releases/tag/v0.1.0
2322
23+ ## [ 0.2.0] https://github.com/SculptTechProject/dummysensors/releases/tag/v0.2.0 - 2025-09-04
24+
25+ ### Added
26+
27+ - CSV writer (` --out "*.csv" ` ) z nagłówkiem i line-buffering.
28+ - ` --partition-by device|type|none ` (routing do plików per device/type).
29+ - YAML config: ` dummy-sensors run --config config.yaml ` .
30+ - Autodiscovery configu: ` config.sensors.yaml ` (preferowane), plus ` dummysensors.yaml|yml ` , ` config.yaml|yml ` .
31+ - Testy: config discovery, CSV writer.
32+
33+ ### Changed
34+
35+ - ` publish.yml ` stabilizowany pod Trusted Publishing.
36+
37+
38+ [ 0.2.0 ] : https://github.com/SculptTechProject/dummysensors/releases/tag/v0.2.0
39+ [ 0.1.0 ] : https://github.com/SculptTechProject/dummysensors/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 33import csv
44import sys
55from typing import Callable
6- from typing import Iterable
76
87def _ensure_dir (path : str ) -> None :
98 d = os .path .dirname (path )
You can’t perform that action at this time.
0 commit comments