diff --git a/lib/slugify/version.rb b/lib/slugify/version.rb index 1337fe3..45d9e17 100644 --- a/lib/slugify/version.rb +++ b/lib/slugify/version.rb @@ -2,7 +2,7 @@ module Slugify module Version MAJOR = 0 MINOR = 1 - TINY = 3 + TINY = 4 STRING = "#{MAJOR}.#{MINOR}.#{TINY}" end diff --git a/spec/slugify/version_spec.rb b/spec/slugify/version_spec.rb index a80c48c..5c517dc 100644 --- a/spec/slugify/version_spec.rb +++ b/spec/slugify/version_spec.rb @@ -2,8 +2,8 @@ module Slugify describe VERSION do - it "should be at 0.1.3" do - Slugify::VERSION.should == "0.1.3" + it "should be at 0.1.4" do + Slugify::VERSION.should == "0.1.4" end end end