diff --git a/CHANGELOG.md b/CHANGELOG.md index 5537bb8..9f74f01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Version 3.0.9 +* Adds breadcrumbs option `link_current_to_request_path` to link the current breadcrumb to the request path(#28 via #29) +* Fixes semantic breadcrumbs when the last item has no link (via #55) +* Downgrades Rails dependency to 3.1 (via #56) +* Fixes jRuby issue with `Rails::Application` constant (via #50) +* Fixes deprecation warnings for `alias_method_chain` (via #66) +* Updated coprights (via #63) + ## Version 3.0.8 * Parent breadcrumbs can now also be inferred from models responding to `model_name`. @@ -45,4 +53,4 @@ * No longer supports procs for link text or URL as this is unnecessary when you can pass arguments to the block anyway. * It now accepts multiple arguments for `crumb` and `parent` (see the readme). * Breadcrumbs are now rendered with `<%= breadcrumbs %>`, although you can still use the old `<%= breadcrumb %>` (without *s*). -* You can now access view helpers from inside `Gretel::Crumbs.layout do .. end`. \ No newline at end of file +* You can now access view helpers from inside `Gretel::Crumbs.layout do .. end`. diff --git a/gretel.gemspec b/gretel.gemspec index cfa5848..0896c09 100644 --- a/gretel.gemspec +++ b/gretel.gemspec @@ -19,4 +19,4 @@ Gem::Specification.new do |gem| gem.add_dependency "rails", ">= 3.1.0" gem.add_development_dependency "sqlite3" -end \ No newline at end of file +end diff --git a/lib/gretel/version.rb b/lib/gretel/version.rb index 91f3ed0..a096fa7 100644 --- a/lib/gretel/version.rb +++ b/lib/gretel/version.rb @@ -1,3 +1,3 @@ module Gretel - VERSION = "3.0.8" -end \ No newline at end of file + VERSION = "3.0.9" +end