Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.14.1 #40

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v0.14.1
* Make us_core_test_kit and tls_test_kit dependencies relative

# v0.14.0
* FI-3222: DTR Client Tests: Use Random Number for Attestation Continuation Links by @degradification in https://github.com/inferno-framework/davinci-dtr-test-kit/pull/20
* FI-3299: Fix Questionnaire Package verification in Payer suite by @tstrass in https://github.com/inferno-framework/davinci-dtr-test-kit/pull/29
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PATH
remote: .
specs:
davinci_dtr_test_kit (0.14.0)
davinci_dtr_test_kit (0.14.1)
inferno_core (~> 0.5.0)
jwt (~> 2.6)
smart_app_launch_test_kit (~> 0.4.4)
tls_test_kit (= 0.2.2)
us_core_test_kit (= 0.9.0)
tls_test_kit (~> 0.2.2)
us_core_test_kit (~> 0.9.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -202,14 +202,14 @@ GEM
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.7.4)
nokogiri (1.16.8)
nokogiri (1.17.0)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.8-arm64-darwin)
nokogiri (1.17.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-darwin)
nokogiri (1.17.0-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-linux)
nokogiri (1.17.0-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand Down Expand Up @@ -311,7 +311,7 @@ GEM
strings-ansi (0.2.0)
thor (1.2.2)
tilt (2.4.0)
tls_test_kit (0.2.2)
tls_test_kit (0.2.3)
inferno_core (>= 0.4.2)
tty-color (0.6.0)
tty-markdown (0.7.2)
Expand All @@ -326,8 +326,8 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)
unicode_utils (1.4.0)
us_core_test_kit (0.9.0)
inferno_core (>= 0.4.37)
us_core_test_kit (0.9.3)
inferno_core (>= 0.5.0)
smart_app_launch_test_kit (>= 0.4.6)
tls_test_kit (~> 0.2.0)
webmock (3.23.1)
Expand Down
4 changes: 2 additions & 2 deletions davinci_dtr_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Gem::Specification.new do |spec|
spec.add_dependency 'inferno_core', '~> 0.5.0'
spec.add_dependency 'jwt', '~> 2.6'
spec.add_dependency 'smart_app_launch_test_kit', '~> 0.4.4'
spec.add_dependency 'tls_test_kit', '0.2.2'
spec.add_dependency 'us_core_test_kit', '0.9.0'
spec.add_dependency 'tls_test_kit', '~> 0.2.2'
spec.add_dependency 'us_core_test_kit', '~> 0.9.0'
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.2')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
Expand Down
2 changes: 1 addition & 1 deletion lib/davinci_dtr_test_kit/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DaVinciDTRTestKit
VERSION = '0.14.0'
VERSION = '0.14.1'
end
Loading