From 003983965d2f257fd6b523a5c5904c09ce21f7da Mon Sep 17 00:00:00 2001 From: Lukas Audzevicius Date: Fri, 19 Jan 2024 14:39:30 +0000 Subject: [PATCH] (CAT-1688) Address wrong version expectation Following the completion of CAT-1686, it was noticed that pdk-templates was assigned the wrong expectation, asserting a static (=) version instead of a pessimistic expectation (~). This PR aims to fix this. --- Gemfile | 2 +- config_defaults.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 320432dc..b2a9b84b 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,6 @@ source 'https://rubygems.org' -gem 'rubocop', '= 1.50.0', require: false +gem 'rubocop', '~> 1.50.0', require: false gem 'rubocop-performance', '= 1.16.0', require: false gem 'rubocop-rspec', '= 2.19.0', require: false diff --git a/config_defaults.yml b/config_defaults.yml index d142bb8b..5463c583 100644 --- a/config_defaults.yml +++ b/config_defaults.yml @@ -532,7 +532,7 @@ Gemfile: - gem: 'puppet-debugger' version: '~> 1.0' - gem: 'rubocop' - version: '= 1.50.0' + version: '~> 1.50.0' - gem: 'rubocop-performance' version: '= 1.16.0' - gem: 'rubocop-rspec'