From 32f1c6632ff229a3c9551548e9e9c49b023f03b2 Mon Sep 17 00:00:00 2001 From: Afri <58883403+q9f@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:21:37 +0100 Subject: [PATCH] gem: bump version to 0.5.14 (#305) --- lib/eth/version.rb | 2 +- spec/eth_spec.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/eth/version.rb b/lib/eth/version.rb index 236308f9..f4a2d73f 100644 --- a/lib/eth/version.rb +++ b/lib/eth/version.rb @@ -22,7 +22,7 @@ module Eth MINOR = 5.freeze # Defines the patch version of the {Eth} module. - PATCH = 13.freeze + PATCH = 14.freeze # Defines the version string of the {Eth} module. VERSION = [MAJOR, MINOR, PATCH].join(".").freeze diff --git a/spec/eth_spec.rb b/spec/eth_spec.rb index b0c6b827..0f4f0923 100644 --- a/spec/eth_spec.rb +++ b/spec/eth_spec.rb @@ -1,9 +1,9 @@ require "spec_helper" describe Eth do - it "0.5.13 works" do + it "0.5.14 works" do # placeholder to set up spec in future - expect(Eth::VERSION).to eq "0.5.13" + expect(Eth::VERSION).to eq "0.5.14" end end