File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed
Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v0.3.0 (2026-03-29)
5+
6+ ### Features
7+
8+ - Disable telemetry via pyproject.toml [ tool.openadapt]
9+ ([ #5 ] ( https://github.com/OpenAdaptAI/openadapt-telemetry/pull/5 ) ,
10+ [ ` a4ffd34 ` ] ( https://github.com/OpenAdaptAI/openadapt-telemetry/commit/a4ffd34265d78edbf29effb051dbdf1537c23b15 ) )
11+
12+ Enterprises can commit one file to disable telemetry for all devs:
13+
14+ [ tool.openadapt] telemetry = false
15+
16+ Walks up from cwd to find nearest pyproject.toml. Uses tomllib (stdlib 3.11+) or tomli fallback.
17+ Only checks the first pyproject.toml found (nearest to cwd).
18+
19+ Priority: DO_NOT_TRACK > OPENADAPT_TELEMETRY_ENABLED > pyproject.toml > CI detection.
20+
21+ Co-authored-by: Claude Opus 4.6 (1M context) < noreply@anthropic.com >
22+
23+
424## v0.2.0 (2026-03-17)
525
626
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " openadapt-telemetry"
7- version = " 0.2 .0"
7+ version = " 0.3 .0"
88description = " Unified telemetry and error tracking for OpenAdapt packages"
99readme = " README.md"
1010requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def add_demo(demo_id, task):
9797 scrub_string ,
9898)
9999
100- __version__ = "0.2 .0"
100+ __version__ = "0.3 .0"
101101
102102__all__ = [
103103 # Version
You can’t perform that action at this time.
0 commit comments