From 597862bfc2c56db5cc187a0f3f7259da0fbaf07a Mon Sep 17 00:00:00 2001 From: Ian Yamey Date: Tue, 27 May 2025 15:53:47 -0400 Subject: [PATCH 1/2] Remove outdated travis.yml --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2c49231..0000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -sudo: false -language: ruby -cache: bundler -rvm: - - 2.6.3 -before_install: gem install bundler -v 1.17.2 From ad384111c088963e3b99e3b7ce4fe647a5ab5770 Mon Sep 17 00:00:00 2001 From: Ian Yamey Date: Tue, 27 May 2025 15:54:53 -0400 Subject: [PATCH 2/2] Bump version --- Gemfile.lock | 2 +- lib/unit-ruby/version.rb | 2 +- spec/version_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0fdb003..c73dee1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - unit-ruby (0.12.1) + unit-ruby (0.12.2) activesupport faraday (>= 2.0.1, < 3) faraday-retry diff --git a/lib/unit-ruby/version.rb b/lib/unit-ruby/version.rb index 0f81249..204dec4 100644 --- a/lib/unit-ruby/version.rb +++ b/lib/unit-ruby/version.rb @@ -1,3 +1,3 @@ module Unit - VERSION = '0.12.1' + VERSION = '0.12.2' end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index a2ed920..8bf515f 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 '0.12.1' + expect(Unit::VERSION).to eq '0.12.2' end end