Skip to content

Commit 2bcead6

Browse files
Added changelog to realese. Deleted unused import.
1 parent e6bf512 commit 2bcead6

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/dummysensors/io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import csv
44
import sys
55
from typing import Callable
6-
from typing import Iterable
76

87
def _ensure_dir(path: str) -> None:
98
d = os.path.dirname(path)

0 commit comments

Comments
 (0)