From 794578408d46ceb50f061827fc291815d73c649a Mon Sep 17 00:00:00 2001 From: Rafael Porras Lucena Date: Thu, 21 Jul 2022 11:31:29 +0200 Subject: [PATCH] Bump version to 0.3.3 (#64) --- CHANGELOG.md | 3 +++ Gemfile.lock | 17 +++++++++-------- lib/oktakit/version.rb | 2 +- oktakit.gemspec | 1 + 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 451b057..aa1409b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.3.3] - 2022-07-20 +- [Loosen sawyer dependency to allow 0.9.1](https://github.com/Shopify/oktakit/pull/61) + ## [v0.3.2] - 2022-06-30 - [Fix 'Faraday::Connection#authorization' deprecation warning](https://github.com/Shopify/oktakit/pull/56) diff --git a/Gemfile.lock b/Gemfile.lock index 9fd46e6..ddef1a0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,8 @@ PATH remote: . specs: - oktakit (0.3.2) + oktakit (0.3.3) + faraday (>= 0.17.3, < 2) sawyer (>= 0.8.1, < 0.10) GEM @@ -12,7 +13,7 @@ GEM ast (2.4.2) byebug (11.1.3) diff-lcs (1.4.4) - faraday (1.9.3) + faraday (1.10.0) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -28,18 +29,18 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.3) - multipart-post (>= 1.2, < 3) + faraday-multipart (1.0.4) + multipart-post (~> 2) faraday-net_http (1.0.1) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - multipart-post (2.1.1) + multipart-post (2.2.3) parallel (1.21.0) parser (3.0.3.2) ast (~> 2.4.1) - public_suffix (4.0.6) + public_suffix (4.0.7) rainbow (3.0.0) rake (13.0.6) regexp_parser (2.2.0) @@ -72,9 +73,9 @@ GEM rubocop (~> 1.22) ruby-progressbar (1.11.0) ruby2_keywords (0.0.5) - sawyer (0.8.2) + sawyer (0.9.2) addressable (>= 2.3.5) - faraday (> 0.8, < 2.0) + faraday (>= 0.17.3, < 3) unicode-display_width (2.1.0) vcr (6.0.0) webrick (1.7.0) diff --git a/lib/oktakit/version.rb b/lib/oktakit/version.rb index 4ca1fb7..8c630a7 100644 --- a/lib/oktakit/version.rb +++ b/lib/oktakit/version.rb @@ -1,3 +1,3 @@ module Oktakit - VERSION = '0.3.2'.freeze + VERSION = '0.3.3'.freeze end diff --git a/oktakit.gemspec b/oktakit.gemspec index f9c9cf4..55fb77e 100644 --- a/oktakit.gemspec +++ b/oktakit.gemspec @@ -20,5 +20,6 @@ Gem::Specification.new do |spec| spec.required_ruby_version = '>= 2.6' spec.add_dependency('sawyer', '>= 0.8.1', '< 0.10') + spec.add_dependency('faraday', '>= 0.17.3', '< 2') spec.add_development_dependency('bundler') end