From 2a290d98ded2bff4a3e18b984aae4ab4bebef92c Mon Sep 17 00:00:00 2001 From: Pavan Hirpara Date: Mon, 26 Jun 2023 12:56:22 -0400 Subject: [PATCH] Configure Cops for Embedded Manifest Gem (#54) * Add configuration * Use new naming --- CHANGELOG.md | 3 +++ conf/rubocop_without_rspec.yml | 1 + lib/salsify_rubocop/version.rb | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db5fc98..98cb920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # salsify_rubocop +## 1.43.1 +- Add configuration for `Gemspec/RequiredRubyVersion` cop for configuration manifest embedded gems + ## 1.43.0 - Upgrade `rubocop` to v1.43.0. diff --git a/conf/rubocop_without_rspec.yml b/conf/rubocop_without_rspec.yml index f070d79..fe50b3d 100644 --- a/conf/rubocop_without_rspec.yml +++ b/conf/rubocop_without_rspec.yml @@ -26,6 +26,7 @@ Bundler/GemComment: Gemspec/RequiredRubyVersion: Exclude: - schemas_gem/*_schemas.gemspec + - configuration_manifests_gem/*_configuration_manifests.gemspec # This cop has poor handling for the common case of a lambda arg in a DSL Lint/AmbiguousBlockAssociation: diff --git a/lib/salsify_rubocop/version.rb b/lib/salsify_rubocop/version.rb index bd425ab..4acdce8 100644 --- a/lib/salsify_rubocop/version.rb +++ b/lib/salsify_rubocop/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SalsifyRubocop - VERSION = '1.43.0' + VERSION = '1.43.1' end