File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 3.0.9
4
+ * Adds breadcrumbs option ` link_current_to_request_path ` to link the current breadcrumb to the request path(#28 via #29 )
5
+ * Fixes semantic breadcrumbs when the last item has no link (via #55 )
6
+ * Downgrades Rails dependency to 3.1 (via #56 )
7
+ * Fixes jRuby issue with ` Rails::Application ` constant (via #50 )
8
+ * Fixes deprecation warnings for ` alias_method_chain ` (via #66 )
9
+ * Updated coprights (via #63 )
10
+
3
11
## Version 3.0.8
4
12
* Parent breadcrumbs can now also be inferred from models responding to ` model_name ` .
5
13
45
53
* No longer supports procs for link text or URL as this is unnecessary when you can pass arguments to the block anyway.
46
54
* It now accepts multiple arguments for ` crumb ` and ` parent ` (see the readme).
47
55
* Breadcrumbs are now rendered with ` <%= breadcrumbs %> ` , although you can still use the old ` <%= breadcrumb %> ` (without * s* ).
48
- * You can now access view helpers from inside ` Gretel::Crumbs.layout do .. end ` .
56
+ * You can now access view helpers from inside ` Gretel::Crumbs.layout do .. end ` .
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ Gem::Specification.new do |gem|
19
19
20
20
gem . add_dependency "rails" , ">= 3.1.0"
21
21
gem . add_development_dependency "sqlite3"
22
- end
22
+ end
Original file line number Diff line number Diff line change 1
1
module Gretel
2
- VERSION = "3.0.8 "
3
- end
2
+ VERSION = "3.0.9 "
3
+ end
You can’t perform that action at this time.
0 commit comments