Minimal Text Changelog
The plainest block in the category: a version and date header line per release followed by a dash-prefixed list of changes, with generous vertical spacing between releases instead of dividers, cards, or badges.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/minimal-text-changelog.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/changelog/changelog6.tsx instead.
Usage
The file also exports changelog6Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Changelog6, changelog6Demo } from "@/components/blocks/changelog/changelog6"; export default function Page() { return <Changelog6 {...changelog6Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Section heading; the header block only renders when heading or description is set. |
| description | string | none | Section intro text. |
| releases | MinimalRelease[] | none | Releases, rendered in array order with space-y-12 between them. |
| className | string | none | Extra classes for the outer section element. |
Types
type MinimalRelease = { version: string; date: string; changes: string[]; };
Behavior notes
- Deliberately has no badges, cards, or borders anywhere in the block; each change line is plain typography with a literal "— " text prefix, not an icon or colored tag.
- date is a plain display string set by the caller, never computed at render time.
- heading and description are both optional and independently omittable; when neither is set, the section starts directly at the first release.
More Changelog Blocks
View all →split-milestone-changelog
Split Milestone Changelog
Two-column release entries pairing milestone context with highlights and metrics.
changelog-release-feed
Changelog Release Feed
Release feed cards with aligned change-type labels and an optional CTA per card.
grouped-changelog-board
Grouped Changelog Board
Releases grouped under bold month headings with aligned version and description columns.
milestone-changelog-timeline
Milestone Changelog Timeline
Vertical timeline of releases with a connecting line, version badges, and tone-coded change types.
categorized-release-notes
Categorized Release Notes
Per-release changes grouped into Added, Changed, and Fixed sub-sections.
featured-release-changelog
Featured Release Changelog
The latest release highlighted in a large featured card, older releases condensed below.