From d716e56bc5f4451f8f9d5829141254df92f49057 Mon Sep 17 00:00:00 2001 From: ydah Date: Sat, 8 Jun 2024 11:10:43 +0900 Subject: [PATCH] Release v2.21.0 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/capybara/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec5e8282..e65dc295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Edge (Unreleased) +## 2.21.0 (2024-06-08) + - Fix a false negative for `Capybara/NegationMatcher` when using `to_not`. ([@ydah]) - Fix a false negative for `Capybara/SpecificFinders` when using `find(:id, 'some-id')`. ([@ydah]) diff --git a/docs/antora.yml b/docs/antora.yml index 8ec12200..eaec8974 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-capybara title: RuboCop Capybara -version: ~ +version: '2.21' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/capybara/version.rb b/lib/rubocop/capybara/version.rb index ef5fa608..40fdcb99 100644 --- a/lib/rubocop/capybara/version.rb +++ b/lib/rubocop/capybara/version.rb @@ -4,7 +4,7 @@ module RuboCop module Capybara # Version information for the Capybara RuboCop plugin. module Version - STRING = '2.20.0' + STRING = '2.21.0' end end end