From 12130e892ad2dbcf06809da5ec35d31f308b70ac Mon Sep 17 00:00:00 2001 From: Willie Chalmers III Date: Mon, 10 Aug 2026 12:39:39 -0700 Subject: [PATCH] chore(tooling): pin pre-1.0 contribution release Track the supported v0.1.0 source release without changing the published community health files. --- SOURCE.json | 4 ++-- package.json | 2 +- tests/community-health.test.mjs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SOURCE.json b/SOURCE.json index 4d166ff..e2422a8 100644 --- a/SOURCE.json +++ b/SOURCE.json @@ -1,7 +1,7 @@ { "repository": "LasVegasForTransit/repository-tooling", - "ref": "v1.0.1", - "commit": "398d88641a6172e68a4f5e93bcad4ee2cb2e04ec", + "ref": "v0.1.0", + "commit": "1628e931f84d69b23ed08b7f3ba0125c8307bc06", "files": { ".github/ISSUE_TEMPLATE/bug.yml": "04ad19b1762d23f0e07aa08b0929752663ae158c44f952489f17ea01420f800f", ".github/ISSUE_TEMPLATE/feature.yml": "6e1a717193eaf7a24a7e90caa4d31b9173dc18fc101401d53af45bb2a9fff0dd", diff --git a/package.json b/package.json index 2a841a6..ed4a95e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lvbt-community-health", "private": true, - "version": "1.0.0", + "version": "0.1.0", "type": "module", "engines": { "node": ">=24" diff --git a/tests/community-health.test.mjs b/tests/community-health.test.mjs index 6cb196e..0366760 100644 --- a/tests/community-health.test.mjs +++ b/tests/community-health.test.mjs @@ -10,7 +10,7 @@ const read = (file) => readFile(path.join(root, file)); test('published community files match the pinned tooling release', async () => { const source = JSON.parse(await read('SOURCE.json')); assert.equal(source.repository, 'LasVegasForTransit/repository-tooling'); - assert.equal(source.ref, 'v1.0.1'); + assert.equal(source.ref, 'v0.1.0'); for (const [file, expected] of Object.entries(source.files)) { const digest = createHash('sha256').update(await read(file)).digest('hex');