Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@ cargo test
```

Tests use fixture files in `tests/fixtures/`:

### Linting and formatting

Before committing, ensure clippy and rustfmt are clean:

```sh
cargo clippy
cargo fmt --check
```

To auto-fix formatting: `cargo fmt`
- `sample-session.json` — basic conversation
- `sample-session-rich.json` — complex session with system prompt, tool calls, ANSI output, thinking blocks

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "continue-transcripts"
version = "0.13.1"
version = "0.14.0"
edition = "2021"
description = "Convert continue.dev session files to readable HTML transcripts"
license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Install globally so the `continue-transcripts` command is always available:
```sh
uv tool install continue-transcripts \
--no-index \
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.13.1
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.14.0
```

The `continue-transcripts` command is then available on your `PATH`.
Expand All @@ -83,7 +83,7 @@ To upgrade later (update the version in the URL):
```sh
uv tool install --upgrade continue-transcripts \
--no-index \
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.13.1
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.14.0
```

To uninstall:
Expand All @@ -100,7 +100,7 @@ Run without installing:
uvx \
--no-index \
--from continue-transcripts \
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.13.1 \
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.14.0 \
continue-transcripts ./sessions
```

Expand All @@ -115,7 +115,7 @@ uv venv .venv
source .venv/bin/activate
uv pip install continue-transcripts \
--no-index \
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.13.1
--find-links https://github.com/curtisalexander/continue-transcripts/releases/expanded_assets/v0.14.0
```

### Building from source
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "continue-transcripts"
version = "0.13.1"
version = "0.14.0"
description = "Convert continue.dev session files to readable HTML transcripts"
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion python/continue_transcripts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""continue-transcripts - Convert continue.dev session files to readable HTML transcripts."""

__version__ = "0.13.1"
__version__ = "0.14.0"
Loading