diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index d629bca..e6cb40c 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,5 @@ name: Bug report description: Report behavior that did not work as expected. -title: "" labels: - bug body: diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 21e3f2e..212b4c9 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,5 @@ name: Feature request description: Suggest an improvement or new capability. -title: "" labels: - enhancement body: diff --git a/SOURCE.json b/SOURCE.json index e2422a8..f3b482d 100644 --- a/SOURCE.json +++ b/SOURCE.json @@ -1,10 +1,10 @@ { "repository": "LasVegasForTransit/repository-tooling", - "ref": "v0.1.0", - "commit": "1628e931f84d69b23ed08b7f3ba0125c8307bc06", + "ref": "v0.1.1", + "commit": "264ab732a37162a1b1b324f51820b1a5b0537550", "files": { - ".github/ISSUE_TEMPLATE/bug.yml": "04ad19b1762d23f0e07aa08b0929752663ae158c44f952489f17ea01420f800f", - ".github/ISSUE_TEMPLATE/feature.yml": "6e1a717193eaf7a24a7e90caa4d31b9173dc18fc101401d53af45bb2a9fff0dd", + ".github/ISSUE_TEMPLATE/bug.yml": "640865f0fc20f6dbc5335db7a9a3a4b0d0e471829ff5da46c0f785497624ba36", + ".github/ISSUE_TEMPLATE/feature.yml": "b9510f2223104a4f420a3bd52d212512f5613c65ee4cf1efdc83a8fffa1149f8", ".github/ISSUE_TEMPLATE/config.yml": "8b09e7df09fc7534371988062769ee427af2954a02c04c763e8a8005be0f2be4", ".github/pull_request_template.md": "38ee62db634c37469a06d37bfac8c63a8c1592a7fa4c612b8c8206b68ef8b953" } diff --git a/package.json b/package.json index ed4a95e..27513ed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lvbt-community-health", "private": true, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "engines": { "node": ">=24" diff --git a/tests/community-health.test.mjs b/tests/community-health.test.mjs index 0366760..eb73b46 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, 'v0.1.0'); + assert.equal(source.ref, 'v0.1.1'); for (const [file, expected] of Object.entries(source.files)) { const digest = createHash('sha256').update(await read(file)).digest('hex');