mirror of
https://github.com/Hmbown/DeepSeek-TUI.git
synced 2026-09-03 06:50:13 +08:00
Fold the [Unreleased] notes that ship in this release (/title, Eden AI, child posture, host-side Workflow/Goal, whales, metrics, DSH, char-count title truncation) into the [0.9.8] entry, date it 2026-08-16, and add the verifier-test isolation from #5423. Credit @SparkofSpike (#5419), @redstar (#5422), @wuisabel-gif (#5423), and @buiducnhat (#5415) in the changelog ledger, docs/CONTRIBUTORS.md, and web/lib/release-credits.ts, and resync crates/tui/CHANGELOG.md.
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
/**
|
|
* release-credits.ts — community credit data for the website.
|
|
*
|
|
* CANONICAL SOURCE: docs/CONTRIBUTORS.md
|
|
* That file is the full per-PR contributor record in chronological order.
|
|
* This module is a snapshot of the latest release's merged/harvested
|
|
* contributors and issue helpers, kept in sync by the release process.
|
|
* When cutting a release, update both docs/CONTRIBUTORS.md AND this file.
|
|
*
|
|
* EXTENSION PATH FOR NEW LOCALES:
|
|
* The arrays below are locale-agnostic (GitHub handles). Locale-specific
|
|
* section labels and descriptions live in the page component. To add a
|
|
* new locale, update the page copy — no data changes needed here.
|
|
*
|
|
* See also:
|
|
* - .github/AUTHOR_MAP for identity mapping
|
|
* - CHANGELOG.md for the full release narrative
|
|
* - https://github.com/Hmbown/CodeWhale/graphs/contributors for the live list
|
|
*/
|
|
|
|
/** Contributors whose PRs were merged or harvested into this release. */
|
|
export const RELEASE_CONTRIBUTORS: string[] = [
|
|
"@EvanProgramming",
|
|
"@Lstarsky0",
|
|
"@mvanhorn",
|
|
"@buiducnhat",
|
|
"@SparkofSpike",
|
|
"@redstar",
|
|
"@wuisabel-gif",
|
|
];
|
|
|
|
/** Contributors who helped with reports, reproductions, and verification. */
|
|
export const RELEASE_HELPERS: string[] = [];
|