Skip to content

Commit 8038a7c

Browse files
committed
Bump version to 3.0.9
1 parent 025419b commit 8038a7c

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

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+
311
## Version 3.0.8
412
* Parent breadcrumbs can now also be inferred from models responding to `model_name`.
513

@@ -45,4 +53,4 @@
4553
* No longer supports procs for link text or URL as this is unnecessary when you can pass arguments to the block anyway.
4654
* It now accepts multiple arguments for `crumb` and `parent` (see the readme).
4755
* 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`.

gretel.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Gem::Specification.new do |gem|
1919

2020
gem.add_dependency "rails", ">= 3.1.0"
2121
gem.add_development_dependency "sqlite3"
22-
end
22+
end

lib/gretel/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Gretel
2-
VERSION = "3.0.8"
3-
end
2+
VERSION = "3.0.9"
3+
end

0 commit comments

Comments
 (0)