CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface ChangelogEntry

    A published release note or changelog article.

    const entry: ChangelogEntry = {
    id: 'chg_v2',
    title: 'Version 2.0: Complete Redesign & Offline Sync',
    body: '### Highlights\n- Offline caching\n- Real-time updates',
    versionLabel: '2.0.0',
    publishedAt: '2026-08-01T12:00:00.000Z',
    linkedRequests: [{ id: 'fr_1', title: 'Offline mode' }],
    };
    interface ChangelogEntry {
        body: string;
        id: string;
        linkedRequests: ChangelogLinkedRequest[];
        publishedAt: string;
        title: string;
        versionLabel?: string | null;
    }
    Index
    body: string

    Full markdown content of the release announcement.

    id: string

    Unique changelog entry ID.

    linkedRequests: ChangelogLinkedRequest[]

    Feature requests closed or resolved by this release.

    publishedAt: string

    ISO 8601 publication timestamp.

    title: string

    Headline title of the release note.

    versionLabel?: string | null

    Associated application release version label (e.g., "2.0.0").