Skip to content

Commit f6ff8d0

Browse files
author
semantic-release
committed
chore: release 0.3.0
1 parent a4ffd34 commit f6ff8d0

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "openadapt-telemetry"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Unified telemetry and error tracking for OpenAdapt packages"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/openadapt_telemetry/__init__.py

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

0 commit comments

Comments
 (0)