From 9d2b09b811ec22eca477da9988268fcbd9ba0fb3 Mon Sep 17 00:00:00 2001 From: Fabrice Carrega Date: Wed, 2 Jul 2025 14:43:06 +0200 Subject: [PATCH 1/2] Corrected typo --- ohme.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohme.gemspec b/ohme.gemspec index 9b3a922..3f1e04d 100644 --- a/ohme.gemspec +++ b/ohme.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |spec| # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(__dir__) do - `git ls-files -z`.split('\x0').reject do |f| + `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end From 640d86d1280ab83a21a7554354dc1e53fd3443d0 Mon Sep 17 00:00:00 2001 From: Fabrice Carrega Date: Wed, 2 Jul 2025 14:43:35 +0200 Subject: [PATCH 2/2] Bump ohme to 0.3.0 --- lib/ohme/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ohme/version.rb b/lib/ohme/version.rb index 1dbd82e..d9c7c46 100644 --- a/lib/ohme/version.rb +++ b/lib/ohme/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Ohme - VERSION = '0.2.0' + VERSION = '0.3.0' end