diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5e0b16b..aa2a6ce 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.14.0 # x-release-please-version + rev: v0.15.0 # x-release-please-version hooks: - id: yamllint - id: pymarkdown diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 727e2be..f87262a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.0" + ".": "0.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e612e0..6f388f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.15.0](https://github.com/rubykatzen/baseline/compare/v0.14.0...v0.15.0) (2026-08-22) + + +### Features + +* compact Telegram PR messages ([#165](https://github.com/rubykatzen/baseline/issues/165)) ([6b88491](https://github.com/rubykatzen/baseline/commit/6b884911d5298bba5d1f898a6c3c0b7d654e4f33)) +* emphasize repository in Telegram messages ([#168](https://github.com/rubykatzen/baseline/issues/168)) ([f8973e0](https://github.com/rubykatzen/baseline/commit/f8973e01a6c84ffcc0ba6afdadfbdfd0466738b8)) + ## [0.14.0](https://github.com/rubykatzen/baseline/compare/v0.13.1...v0.14.0) (2026-08-22) diff --git a/Gemfile.lock b/Gemfile.lock index edd6718..738a548 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubykatzen-baseline (0.14.0) + rubykatzen-baseline (0.15.0) erb_lint (~> 0.9) herb (~> 0.10) rubocop (~> 1.88) diff --git a/README.md b/README.md index 0326493..c49f28a 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.14.0 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.15.0 ``` @@ -53,7 +53,7 @@ on: pull_request: jobs: github: - uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.14.0 + uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.15.0 ``` @@ -77,7 +77,7 @@ on: pull_request: jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.14.0 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.15.0 ``` @@ -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.14.0 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.15.0 with: extra: '["release-please"]' ``` @@ -121,7 +121,7 @@ on: workflow_dispatch: jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.14.0 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.15.0 secrets: TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} @@ -153,7 +153,7 @@ on: jobs: notify: if: contains(github.event.issue.labels.*.name, 'notify') - uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.14.0 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.15.0 secrets: TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_ISSUE_CHAT_ID }} @@ -175,7 +175,7 @@ a JSON array through `skip`: ```yaml jobs: lint: - uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.14.0 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.15.0 with: skip: '["rubocop", "herb"]' ``` @@ -217,7 +217,7 @@ CI runtime installation is automatic. For local pre-commit use, create ```yaml repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.14.0 + rev: v0.15.0 hooks: - id: yamllint - id: pymarkdown diff --git a/lib/baseline/version.rb b/lib/baseline/version.rb index d61c4a4..20bb2ef 100644 --- a/lib/baseline/version.rb +++ b/lib/baseline/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Baseline - VERSION = "0.14.0" + VERSION = "0.15.0" end