From cddb2e8654fe67f74633baac6d1d0ae050024f34 Mon Sep 17 00:00:00 2001 From: Lawson Jaglom-Kurtz Date: Wed, 19 Jan 2022 21:43:28 -0700 Subject: [PATCH] Bump version to 0.3.0 --- .gitignore | 1 + CHANGELOG.md | 6 ++++++ Gemfile.lock | 14 +++++++++----- lib/oktakit/version.rb | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index b967852..b1766ce 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /tmp/ .byebug_history .DS_Store +*.gem diff --git a/CHANGELOG.md b/CHANGELOG.md index 865fd45..57d556b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## [v0.3.0] - 2022-01-20 +- [Adds support for Ruby 3](https://github.com/Shopify/oktakit/pull/42) +- [Adds support for user reactivation endpoint](https://github.com/Shopify/oktakit/pull/47) +- [Adds support for app user schema operations endpoint](https://github.com/Shopify/oktakit/pull/32) +- [Makes custom error details available](https://github.com/Shopify/oktakit/pull/48) + ## [v0.2.1] - 2021-10-14 - Adds support for [Group Rule operations](https://developer.okta.com/docs/reference/api/groups/#group-rule-operations) diff --git a/Gemfile.lock b/Gemfile.lock index f86441c..6e85f77 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - oktakit (0.2.1) + oktakit (0.3.0) sawyer (~> 0.8.1) GEM @@ -12,25 +12,29 @@ GEM ast (2.4.2) byebug (11.1.3) diff-lcs (1.4.4) - faraday (1.8.0) + faraday (1.9.3) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) - faraday-httpclient (~> 1.0.1) + faraday-httpclient (~> 1.0) + faraday-multipart (~> 1.0) faraday-net_http (~> 1.0) - faraday-net_http_persistent (~> 1.1) + faraday-net_http_persistent (~> 1.0) faraday-patron (~> 1.0) faraday-rack (~> 1.0) - multipart-post (>= 1.2, < 3) + faraday-retry (~> 1.0) ruby2_keywords (>= 0.0.4) faraday-em_http (1.0.0) 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-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) parallel (1.21.0) parser (3.0.3.2) diff --git a/lib/oktakit/version.rb b/lib/oktakit/version.rb index 81089c5..72401bd 100644 --- a/lib/oktakit/version.rb +++ b/lib/oktakit/version.rb @@ -1,3 +1,3 @@ module Oktakit - VERSION = '0.2.1'.freeze + VERSION = '0.3.0'.freeze end