diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d10b88a..5e0e737 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.18.0 # x-release-please-version + rev: v0.18.1 # x-release-please-version hooks: - id: yamllint - id: pymarkdown diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5e39b94..513fac0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.18.0" + ".": "0.18.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a4d6b4d..e4f1f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.1](https://github.com/rubykatzen/baseline/compare/v0.18.0...v0.18.1) (2026-09-02) + + +### Bug Fixes + +* align LinkedIn publish Telegram notification with other formats ([#200](https://github.com/rubykatzen/baseline/issues/200)) ([d5bea5a](https://github.com/rubykatzen/baseline/commit/d5bea5a089c2b9332d41cd52a5695b55bba3010f)) + ## [0.18.0](https://github.com/rubykatzen/baseline/compare/v0.17.2...v0.18.0) (2026-09-02) diff --git a/Gemfile.lock b/Gemfile.lock index ce3c2ca..ab725c4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubykatzen-baseline (0.18.0) + rubykatzen-baseline (0.18.1) erb_lint (~> 0.9) herb (~> 0.10) rubocop (~> 1.88) diff --git a/README.md b/README.md index c28e4ed..fb1fe3f 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.18.0 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.1 ``` @@ -56,7 +56,7 @@ jobs: permissions: contents: read issues: read - uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.18.1 ``` @@ -83,7 +83,7 @@ on: pull_request: jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.1 ``` @@ -100,7 +100,7 @@ Repositories using an optional shared policy can add its Embedder configuration: ```yaml jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.1 with: extra: '["release-please"]' ``` @@ -127,7 +127,7 @@ on: workflow_dispatch: jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.18.1 with: telegram-chat-id: ${{ vars.TELEGRAM_CHAT_ID }} secrets: @@ -159,7 +159,7 @@ on: types: [published] jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.18.1 with: telegram-chat-id: ${{ vars.TELEGRAM_CHAT_ID }} secrets: @@ -185,7 +185,7 @@ on: types: [published] jobs: publish: - uses: rubykatzen/baseline/.github/workflows/publish-linkedin-release-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/publish-linkedin-release-shared.yml@v0.18.1 with: telegram-chat-id: ${{ vars.TELEGRAM_CHAT_ID }} secrets: @@ -232,7 +232,7 @@ on: jobs: notify: if: contains(github.event.issue.labels.*.name, 'notify') - uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.18.1 with: telegram-chat-id: ${{ vars.TELEGRAM_ISSUE_CHAT_ID }} secrets: @@ -255,7 +255,7 @@ a JSON array through `skip`: ```yaml jobs: lint: - uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.0 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.1 with: skip: '["rubocop", "herb"]' ``` @@ -297,7 +297,7 @@ CI runtime installation is automatic. For local pre-commit use, create ```yaml repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.18.0 + rev: v0.18.1 hooks: - id: yamllint - id: pymarkdown diff --git a/lib/baseline/version.rb b/lib/baseline/version.rb index a3c777e..befb29d 100644 --- a/lib/baseline/version.rb +++ b/lib/baseline/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Baseline - VERSION = "0.18.0" + VERSION = "0.18.1" end