Skip to content

Commit

Permalink
Support zaikio-jwt_auth v2.x, bump version to v0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Campbell committed Apr 29, 2022
1 parent 2d0fc0a commit c00df09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 0.18.1 - 2022-04-29

* Relax dependency on `zaikio-jwt_auth`, allow versions 2.x

## 0.18.0 - 2022-04-26

* **BREAKING:** Encrypt `token` & `refresh_token` with [Active Record Encryption](https://guides.rubyonrails.org/active_record_encryption.html#setup):
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PATH
remote: .
specs:
zaikio-oauth_client (0.18.0)
zaikio-oauth_client (0.18.1)
actionpack (>= 5.0.0)
activerecord (>= 5.0.0)
activesupport (>= 5.0.0)
oauth2
railties (>= 5.0.0)
zaikio-jwt_auth (>= 0.5, < 2.0)
zaikio-jwt_auth (>= 0.5, < 3.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -191,7 +191,7 @@ GEM
rack-proxy (>= 0.6.1)
railties (>= 5.2)
semantic_range (>= 2.3.0)
zaikio-jwt_auth (1.0.2)
zaikio-jwt_auth (2.0.0)
activejob
jwt (>= 2.2.1)
oj (>= 3.0.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/zaikio/oauth_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Zaikio
module OAuthClient
VERSION = "0.18.0".freeze
VERSION = "0.18.1".freeze
end
end
2 changes: 1 addition & 1 deletion zaikio-oauth_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "activesupport", ">= 5.0.0"
spec.add_dependency "railties", ">= 5.0.0"
spec.add_dependency "oauth2"
spec.add_dependency "zaikio-jwt_auth", ">= 0.5", "< 2.0"
spec.add_dependency "zaikio-jwt_auth", ">= 0.5", "< 3.0"

spec.add_development_dependency "pg"
spec.add_development_dependency "byebug"
Expand Down

0 comments on commit c00df09

Please sign in to comment.