CHANGELOG.md in gretel-3.0.8 vs CHANGELOG.md in gretel-3.0.9
- old
+ new
@@ -1,7 +1,15 @@
# 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`.
## Version 3.0.7
* Pretext and posttext classes are now customizable with `<%= breadcrumbs pretext_class: "some-class" %>` and `<%= breadcrumbs posttext_class: "some-other-class" %>`.
@@ -43,6 +51,6 @@
* `options[:link_last]` was deprecated in a previous version and is now removed. Use `options[:link_current]` instead.
* The `link` method in `crumb :xx do ... end` no longer takes HTML options. The method for this is now by building the breadcrumbs manually (see the readme).
* 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`.