Skip to content

Commit

Permalink
Merge pull request #18 from envato/fix-jwt-version-incompatibility
Browse files Browse the repository at this point in the history
Lock JWT dependency to 1.5.x
  • Loading branch information
salamagd authored Sep 14, 2017
2 parents 5b0d937 + 7e64f48 commit ccef97b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [v2.1.0] - 2017-08-31
### Changed
- Check `PATH_INFO` instead of `REQUEST_PATH` when performing path exclusion

## [v2.1.1] - 2017-09-14
### Changed
- Pin `jwt` gem dependency to version `1.5.x`, as the recent 2.0.0 release is currently incompatible with `jwt_signed_request`
2 changes: 1 addition & 1 deletion jwt_signed_request.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency 'jwt'
spec.add_dependency 'jwt', '~> 1.5.0'
spec.add_dependency 'rack'

spec.add_development_dependency "bundler"
Expand Down
2 changes: 1 addition & 1 deletion lib/jwt_signed_request/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JWTSignedRequest
VERSION = "2.1.0".freeze
VERSION = "2.1.1".freeze
end

0 comments on commit ccef97b

Please # to comment.