From 1c896ab810e3b4ff5c7597f9c61a1568087ed1bb Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Thu, 30 May 2024 12:26:36 -0400 Subject: [PATCH] Release 1.2.0 (#56) * bump nokogiri * add missing require * bump version --- Gemfile.lock | 17 ++++++++--------- lib/fhir_dstu2_models/fhir.rb | 1 + lib/fhir_dstu2_models/version.rb | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6732f8f..b9369d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - fhir_dstu2_models (1.1.1) + fhir_dstu2_models (1.2.0) bcp47 (>= 0.3) date_time_precision (>= 0.8) mime-types (>= 3.0) @@ -14,7 +14,7 @@ GEM bcp47 (0.3.3) i18n coderay (1.1.3) - concurrent-ruby (1.1.9) + concurrent-ruby (1.3.1) date_time_precision (0.8.1) diff-lcs (1.3) docile (1.1.5) @@ -37,7 +37,7 @@ GEM guard-test (2.0.8) guard-compat (~> 1.2) test-unit (~> 3.0) - i18n (1.8.10) + i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.3.1) listen (3.8.0) @@ -45,12 +45,12 @@ GEM rb-inotify (~> 0.9, >= 0.9.10) lumberjack (1.0.13) method_source (1.0.0) - mime-types (3.3.1) + mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2021.0901) - mini_portile2 (2.8.5) + mime-types-data (3.2024.0507) + mini_portile2 (2.8.6) nenv (0.3.0) - nokogiri (1.15.5) + nokogiri (1.16.5) mini_portile2 (~> 2.8.2) racc (~> 1.4) nokogiri-diff (0.2.0) @@ -67,9 +67,8 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - racc (1.7.3) + racc (1.8.0) rainbow (3.1.1) - rake (12.3.3) rb-fsevent (0.11.2) rb-inotify (0.10.1) diff --git a/lib/fhir_dstu2_models/fhir.rb b/lib/fhir_dstu2_models/fhir.rb index 9ba8a9a..192a683 100644 --- a/lib/fhir_dstu2_models/fhir.rb +++ b/lib/fhir_dstu2_models/fhir.rb @@ -1,5 +1,6 @@ require 'nokogiri' require 'logger' +require 'uri' module FHIR module DSTU2 diff --git a/lib/fhir_dstu2_models/version.rb b/lib/fhir_dstu2_models/version.rb index e4a1bfe..b8e1887 100644 --- a/lib/fhir_dstu2_models/version.rb +++ b/lib/fhir_dstu2_models/version.rb @@ -1,7 +1,7 @@ module FHIR module DSTU2 module Models - VERSION = '1.1.1'.freeze + VERSION = '1.2.0'.freeze end end end