diff --git a/Gemfile.lock b/Gemfile.lock index f52ef00..8bb7ed7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - unit-ruby (1.0.0) + unit-ruby (1.0.1) activesupport (~> 7) faraday (~> 2) faraday-retry (~> 2) @@ -46,7 +46,7 @@ GEM rainbow (3.1.1) rake (13.2.1) regexp_parser (2.10.0) - rexml (3.4.0) + rexml (3.4.2) rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -77,7 +77,7 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.6.0) - uri (1.0.3) + uri (1.0.4) PLATFORMS ruby diff --git a/lib/unit-ruby/version.rb b/lib/unit-ruby/version.rb index 133829c..363ff31 100644 --- a/lib/unit-ruby/version.rb +++ b/lib/unit-ruby/version.rb @@ -1,3 +1,3 @@ module Unit - VERSION = '1.0.0' + VERSION = '1.0.1' end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index d0609b3..b51ac5f 100644 --- a/spec/version_spec.rb +++ b/spec/version_spec.rb @@ -2,7 +2,7 @@ RSpec.describe Unit do it 'returns the correct version' do - expect(Unit::VERSION).to eq '1.0.0' + expect(Unit::VERSION).to eq '1.0.1' end end