diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a6e8fb8..3ed4582 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.16.1 # x-release-please-version + rev: v0.16.2 # x-release-please-version hooks: - id: yamllint - id: pymarkdown diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 256c881..45c13ca 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.1" + ".": "0.16.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9be9d37..18c2426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.16.2](https://github.com/rubykatzen/baseline/compare/v0.16.1...v0.16.2) (2026-08-25) + + +### Bug Fixes + +* grant label check permission ([#176](https://github.com/rubykatzen/baseline/issues/176)) ([588a81f](https://github.com/rubykatzen/baseline/commit/588a81fd9c749ec0682cd57c43187cff81fd22fb)) +* separate PR digest titles ([#170](https://github.com/rubykatzen/baseline/issues/170)) ([29fe4bb](https://github.com/rubykatzen/baseline/commit/29fe4bb5a851bf972396afc8cb1bd30e352c3eae)) + ## [0.16.1](https://github.com/rubykatzen/baseline/compare/v0.16.0...v0.16.1) (2026-08-24) diff --git a/Gemfile.lock b/Gemfile.lock index 11cd6c9..c7e9920 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubykatzen-baseline (0.16.1) + rubykatzen-baseline (0.16.2) erb_lint (~> 0.9) herb (~> 0.10) rubocop (~> 1.88) diff --git a/README.md b/README.md index 914612f..b70f9e6 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ on: pull_request: jobs: lint: - uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.2 ``` @@ -53,7 +53,7 @@ on: pull_request: jobs: github: - uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.16.2 ``` @@ -77,7 +77,7 @@ on: pull_request: jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.2 ``` @@ -94,7 +94,7 @@ Repositories using an optional shared policy can add its Embedder configuration: ```yaml jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.2 with: extra: '["release-please"]' ``` @@ -121,7 +121,7 @@ on: workflow_dispatch: jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.16.2 secrets: TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} @@ -151,7 +151,7 @@ on: types: [published] jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.16.2 secrets: TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} @@ -178,7 +178,7 @@ on: jobs: notify: if: contains(github.event.issue.labels.*.name, 'notify') - uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.16.2 secrets: TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_ISSUE_CHAT_ID }} @@ -200,7 +200,7 @@ a JSON array through `skip`: ```yaml jobs: lint: - uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.1 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.2 with: skip: '["rubocop", "herb"]' ``` @@ -242,7 +242,7 @@ CI runtime installation is automatic. For local pre-commit use, create ```yaml repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.16.1 + rev: v0.16.2 hooks: - id: yamllint - id: pymarkdown diff --git a/lib/baseline/version.rb b/lib/baseline/version.rb index 9ea2169..5351a8e 100644 --- a/lib/baseline/version.rb +++ b/lib/baseline/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Baseline - VERSION = "0.16.1" + VERSION = "0.16.2" end