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