diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b77f50..1bc5713 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.7.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e0915a2..d91ebea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.7.1](https://github.com/passageidentity/passage-ruby/compare/v0.7.0...v0.7.1) (2024-12-20) + + +### Bug Fixes + +* jwt validation correctly compares the aud with both app id and auth origin ([#147](https://github.com/passageidentity/passage-ruby/issues/147)) ([8b03140](https://github.com/passageidentity/passage-ruby/commit/8b031405acb9905479f3a65c836083b845f8113e)) +* validate_jwt now refreshes cache if it is expired after client initialization ([#145](https://github.com/passageidentity/passage-ruby/issues/145)) ([eef1230](https://github.com/passageidentity/passage-ruby/commit/eef1230285af8e3c9d1f1eedfdc1332575e98ee3)) + ## [0.7.0](https://github.com/passageidentity/passage-ruby/compare/v0.6.2...v0.7.0) (2024-12-12) diff --git a/lib/passageidentity/version.rb b/lib/passageidentity/version.rb index 0cd2786..818ac24 100644 --- a/lib/passageidentity/version.rb +++ b/lib/passageidentity/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Passage - VERSION = '0.7.0' + VERSION = '0.7.1' end