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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- The setup-error hand-off prompt now prints as plain, unformatted text so it can be copied exactly as shown.

### Changed
- Refreshed the bundled workspace `uv.lock` (`dlt` 1.28.2, `pyarrow` 25.0.0).

## [0.10.2] - 2026-07-08

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions src/create_dlthub_workspace/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def print_error(headline: str, message: str) -> None:


def print_verbatim(text: str) -> None:
"""Print ``text`` exactly: no markup interpretation, no hard wrapping."""
console.print(text, markup=False, soft_wrap=True)
"""Print ``text`` exactly: no markup interpretation, no highlighting, no hard wrapping."""
console.print(text, markup=False, highlight=False, soft_wrap=True)


@contextmanager
Expand Down
Loading
Loading