Skip to content

Commit 8096b91

Browse files
author
semantic-release
committed
chore(release): 0.20.0
1 parent fb47cff commit 8096b91

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
# CHANGELOG
22

33

4+
## v0.20.0 (2026-03-08)
5+
6+
### Chores
7+
8+
- **scripts**: Unify large graph render scripts into single parameterized script
9+
([`07a8186`](https://github.com/johnmarktaylor91/torchlens/commit/07a8186537cf88bb39f4abae55a05dc01ec16457))
10+
11+
Replace `run_250k.py` and `run_1M.py` with `render_large_graph.py` that accepts any node count as a
12+
CLI argument, plus --format, --seed, and --outdir options.
13+
14+
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15+
16+
### Features
17+
18+
- **logging**: Add verbose mode for timed progress messages
19+
([`0603f10`](https://github.com/johnmarktaylor91/torchlens/commit/0603f1035b8be7c2c44a416099fac282eaafa686))
20+
21+
Add `verbose: bool = False` parameter to `log_forward_pass`, `show_model_graph`, and internal
22+
pipeline functions. When enabled, prints `[torchlens]`-prefixed progress at each major pipeline
23+
stage with timing. Also fixes `_trim_and_reorder_model_history_fields` to preserve all non-ordered
24+
attributes (not just private ones).
25+
26+
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27+
28+
429
## v0.19.0 (2026-03-08)
530

631
### Chores

pyproject.toml

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

55
[project]
66
name = "torchlens"
7-
version = "0.19.0"
7+
version = "0.20.0"
88
description = "A package for extracting activations from PyTorch models"
99
readme = "README.md"
1010
license = "GPL-3.0-only"

torchlens/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
first imported. See the bottom of this file for details.
1010
"""
1111

12-
__version__ = "0.19.0"
12+
__version__ = "0.20.0"
1313

1414
# ---- Public API: user-facing entry points --------------------------------
1515

0 commit comments

Comments
 (0)