Skip to content

Commit

Permalink
Release 0.2.1 (#40)
Browse files Browse the repository at this point in the history
* bump version

* update changelog
  • Loading branch information
Jammjammjamm authored Jan 5, 2023
1 parent b48ff57 commit a9ee7d7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.2.1

* Update to support new development workflow. See [the template
repository](https://github.com/inferno-framework/inferno-template#development-with-ruby)
for details.
* Fix a bug in token refresh test where the original refresh token was not
included in the smart credentials output when the refresh response did not
contain a new refresh token.

# 0.2.0

* Update to use new version of inferno_core with ruby 3.
Expand Down
31 changes: 16 additions & 15 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
smart_app_launch_test_kit (0.2.0)
smart_app_launch_test_kit (0.2.1)
inferno_core (>= 0.4.2)
jwt (~> 2.2)
tls_test_kit (~> 0.2.0)
Expand Down Expand Up @@ -64,7 +64,8 @@ GEM
dry-core (~> 0.5, >= 0.5)
dry-inflector (~> 0.1, >= 0.1.2)
dry-struct (~> 1.0)
dry-transformer (0.1.1)
dry-transformer (1.0.1)
zeitwerk (~> 2.6)
dry-types (1.5.1)
concurrent-ruby (~> 1.0)
dry-container (~> 0.3)
Expand Down Expand Up @@ -128,13 +129,13 @@ GEM
dry-configurable (~> 0.13, >= 0.13.0)
hanami-utils (~> 2.0.beta)
rack (~> 2.0)
hanami-router (2.0.0.beta2)
hanami-router (2.0.0)
mustermann (~> 1.0)
mustermann-contrib (~> 1.0)
rack (~> 2.0)
hanami-utils (2.0.0.beta1)
hanami-utils (2.0.0)
concurrent-ruby (~> 1.0)
dry-transformer (~> 0.1)
dry-transformer (~> 1.0, < 2)
hansi (0.2.1)
hashdiff (1.0.1)
http-accept (1.7.0)
Expand All @@ -143,7 +144,7 @@ GEM
i18n (1.12.0)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
inferno_core (0.4.2)
inferno_core (0.4.6)
activesupport (~> 6.1)
blueprinter (= 0.25.2)
dotenv (~> 2.7)
Expand All @@ -156,7 +157,7 @@ GEM
fhir_client (>= 5.0.3)
fhir_models (>= 4.2.2)
hanami-controller (= 2.0.0.beta1)
hanami-router (= 2.0.0.beta2)
hanami-router (= 2.0.0)
oj (= 3.11.0)
pry
pry-byebug
Expand All @@ -169,7 +170,7 @@ GEM
io-console (0.5.11)
irb (1.4.2)
reline (>= 0.3.0)
jwt (2.5.0)
jwt (2.6.0)
method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
Expand All @@ -185,11 +186,11 @@ GEM
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.5.8)
nokogiri (1.13.9-arm64-darwin)
nokogiri (1.13.10-arm64-darwin)
racc (~> 1.4)
nokogiri (1.13.9-x86_64-darwin)
nokogiri (1.13.10-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.13.9-x86_64-linux)
nokogiri (1.13.10-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand All @@ -207,7 +208,7 @@ GEM
public_suffix (5.0.0)
puma (5.6.5)
nio4r (~> 2.0)
racc (1.6.0)
racc (1.6.2)
rack (2.2.4)
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand Down Expand Up @@ -240,9 +241,9 @@ GEM
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
sqlite3 (1.5.3-arm64-darwin)
sqlite3 (1.5.3-x86_64-darwin)
sqlite3 (1.5.3-x86_64-linux)
sqlite3 (1.5.4-arm64-darwin)
sqlite3 (1.5.4-x86_64-darwin)
sqlite3 (1.5.4-x86_64-linux)
thor (1.2.1)
tilt (2.0.11)
tls_test_kit (0.2.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/smart_app_launch/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SMARTAppLaunch
VERSION = '0.2.0'.freeze
VERSION = '0.2.1'.freeze
end

0 comments on commit a9ee7d7

Please sign in to comment.