返回 CodeWhale
release-credits.ts
根目录 / web / lib / release-credits.ts
1 /**
2 * release-credits.ts — community credit data for the website.
3 *
4 * CANONICAL SOURCE: docs/CONTRIBUTORS.md
5 * That file is the full per-PR contributor record in chronological order.
6 * This module is a snapshot of the latest release's merged/harvested
7 * contributors and issue helpers, kept in sync by the release process.
8 * When cutting a release, update both docs/CONTRIBUTORS.md AND this file.
9 *
10 * EXTENSION PATH FOR NEW LOCALES:
11 * The arrays below are locale-agnostic (GitHub handles). Locale-specific
12 * section labels and descriptions live in the page component. To add a
13 * new locale, update the page copy — no data changes needed here.
14 *
15 * See also:
16 * - .github/AUTHOR_MAP for identity mapping
17 * - CHANGELOG.md for the full release narrative
18 * - https://github.com/Hmbown/CodeWhale/graphs/contributors for the live list
19 */
20
21 /** Contributors whose PRs were merged or harvested into this release. */
22 export const RELEASE_CONTRIBUTORS: string[] = [
23 "@AdityaVG13",
24 "@aboimpinto",
25 ];
26
27 /**
28 * Contributors who helped with reports, reproductions, and verification.
29 * Credit covers the 0.10.0 reports recorded in docs/CONTRIBUTORS.md.
30 */
31 export const RELEASE_HELPERS: string[] = [
32 "@7jrxt42BxFZo4iAnN4CX",
33 "@BX166",
34 "@Lstarsky0",
35 "@Lujc0523",
36 "@Statter",
37 "@bevis-wong",
38 "@sequico",
39 ];
40
40 lines TYPESCRIPT