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');