From 737f2d02aed0bf4d435da4f1ee6af9e4b73e8fc1 Mon Sep 17 00:00:00 2001 From: Benjamin Quorning Date: Thu, 12 Dec 2024 13:14:25 +0100 Subject: [PATCH 1/2] CI: Add actions:write to gem-publish workflow The last step in this workflow's publish run opens a PR, but the actions are not running on the PR, requiring a manual triggering or force-push. It will save us time if this way, we can merge the created PR sooner. --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index de3c2d7ae..d998a5008 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,6 +8,7 @@ jobs: name: Publish to RubyGems runs-on: ubuntu-latest permissions: + actions: write contents: write id-token: write pull-requests: write From 47365dc93b07dea5822c65be06df25d6395245a7 Mon Sep 17 00:00:00 2001 From: Benjamin Quorning Date: Thu, 12 Dec 2024 13:00:36 +0100 Subject: [PATCH 2/2] Release v3.3.0 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/rspec/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb2a0d385..aa199ab0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 3.3.0 (2024-12-12) + - Deprecate `top_level_group?` method from `TopLevelGroup` mixin as all of its callers were intentionally removed from `Rubocop/RSpec`. ([@corsonknowles]) - Fix false positive for RSpec/EmptyMetadata for splat kwargs. ([@pirj]) diff --git a/docs/antora.yml b/docs/antora.yml index 51a533a15..e1117437d 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: ~ +version: '3.3' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index e511c3f04..45e946f97 100644 --- a/lib/rubocop/rspec/version.rb +++ b/lib/rubocop/rspec/version.rb @@ -4,7 +4,7 @@ module RuboCop module RSpec # Version information for the RSpec RuboCop plugin. module Version - STRING = '3.2.0' + STRING = '3.3.0' end end end