From 480847f5189d759b726b4ca649d1a24c0f02d77a Mon Sep 17 00:00:00 2001 From: Yuriy Kirillov Date: Wed, 2 Sep 2026 23:39:42 +0200 Subject: [PATCH] chore: release 0.18.0 --- .pre-commit-config.yaml | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ Gemfile.lock | 2 +- README.md | 20 ++++++++++---------- lib/baseline/version.rb | 2 +- 6 files changed, 27 insertions(+), 14 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d8e41cd..d10b88a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/rubykatzen/baseline - rev: v0.17.2 # x-release-please-version + rev: v0.18.0 # x-release-please-version hooks: - id: yamllint - id: pymarkdown diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 89dfe57..5e39b94 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.17.2" + ".": "0.18.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a61d1e..a4d6b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.18.0](https://github.com/rubykatzen/baseline/compare/v0.17.2...v0.18.0) (2026-09-02) + + +### Features + +* add no-emoji-in-docs AGENTS.md fragment ([#197](https://github.com/rubykatzen/baseline/issues/197)) ([e02bdd1](https://github.com/rubykatzen/baseline/commit/e02bdd16c860222f3be8b05d8aa63caeff1b3423)) +* publish releases to LinkedIn ([#194](https://github.com/rubykatzen/baseline/issues/194)) ([a20a784](https://github.com/rubykatzen/baseline/commit/a20a784020920e000d38ceec9610a9073ac2acb2)) + + +### Bug Fixes + +* address Copilot review findings on LinkedIn release publishing ([#199](https://github.com/rubykatzen/baseline/issues/199)) ([12254ce](https://github.com/rubykatzen/baseline/commit/12254ce23da128e9d50982a6984377980a66fa3b)) + ## [0.17.2](https://github.com/rubykatzen/baseline/compare/v0.17.1...v0.17.2) (2026-08-29) diff --git a/Gemfile.lock b/Gemfile.lock index 395e4e2..ce3c2ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubykatzen-baseline (0.17.2) + rubykatzen-baseline (0.18.0) erb_lint (~> 0.9) herb (~> 0.10) rubocop (~> 1.88) diff --git a/README.md b/README.md index 5d4c879..c28e4ed 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.17.2 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.0 ``` @@ -56,7 +56,7 @@ jobs: permissions: contents: read issues: read - uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.17.2 + uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.18.0 ``` @@ -83,7 +83,7 @@ on: pull_request: jobs: embedder: - uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.17.2 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.0 ``` @@ -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.17.2 + uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.18.0 with: extra: '["release-please"]' ``` @@ -127,7 +127,7 @@ on: workflow_dispatch: jobs: notify: - uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.17.2 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.18.0 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.17.2 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.18.0 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.17.2 + uses: rubykatzen/baseline/.github/workflows/publish-linkedin-release-shared.yml@v0.18.0 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.17.2 + uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.18.0 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.17.2 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.0 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.17.2 + rev: v0.18.0 hooks: - id: yamllint - id: pymarkdown diff --git a/lib/baseline/version.rb b/lib/baseline/version.rb index df0c56f..a3c777e 100644 --- a/lib/baseline/version.rb +++ b/lib/baseline/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Baseline - VERSION = "0.17.2" + VERSION = "0.18.0" end