diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b68f82..c105b00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ Changelog ========= +0.5.1 +----- +* Fixed specs +* Fixed changelog + 0.5.0 ----- +* Puma server +* Bootstrap 2.3.2 +* Fontawesome 3.2.0 0.4.1 ----- diff --git a/VERSION b/VERSION index 8f0916f..4b9fcbe 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.0 +0.5.1 diff --git a/spec/features/pages_spec.rb b/spec/features/pages_spec.rb index 0b2d59d..95d50a0 100644 --- a/spec/features/pages_spec.rb +++ b/spec/features/pages_spec.rb @@ -1,8 +1,8 @@ require 'spec_helper' describe 'Home' do - it "shows Hello World message" do + it "has Hello World in title" do visit root_path - expect(page).to have_content I18n.t('hello') + expect(page).to have_title I18n.t('hello') end end