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 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